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/CxDCol.php
2019-03-18 22:49:42 +08:00

20 lines
351 B
PHP

<?php
namespace Arma;
class CxDCol extends Col
{
/**
* Construct a complex column vector out of two non-complex column vectors.
*
* @param DCol $real
* @param DCol $imag
* @return CxDCol
*/
static function fromCols($real, $imag) {
return new CxDCol;
}
}
class_alias(CxDCol::class, 'Arma\\CxDVec');