This repository has been archived on 2020-06-07. You can view files and clone it, but cannot push or open issues or pull requests.
php-armadillo/stubs/impl/CxIMat.php

37 lines
583 B
PHP
Raw Normal View History

2018-11-09 13:56:34 +00:00
<?php
namespace Arma;
2019-02-05 13:31:16 +00:00
class CxIMat implements CxMat
2018-11-09 13:56:34 +00:00
{
/**
* @inheritdoc
2019-02-05 13:31:16 +00:00
* @return CxIMat
2018-11-09 13:56:34 +00:00
*/
static function init($in_rows, $in_cols, $fill = 0) {}
/**
* @inheritdoc
2019-02-05 13:31:16 +00:00
* @return CxIMat
2018-11-09 13:56:34 +00:00
*/
public static function fromMats($real, $imag) {}
/**
* @inheritdoc
2019-02-05 13:31:16 +00:00
* @return CxIMat
2018-11-09 13:56:34 +00:00
*/
static function fromSparse($sp_mat) {}
/**
* @inheritdoc
2019-02-05 13:31:16 +00:00
* @return CxIMat
2018-11-09 13:56:34 +00:00
*/
static function fromString($text) {}
/**
* @inheritdoc
2019-02-05 13:31:16 +00:00
* @return CxIMat
2018-11-09 13:56:34 +00:00
*/
static function fromVec($vector) {}
}