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/CxDmat.php

37 lines
586 B
PHP
Raw Normal View History

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