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

20 lines
351 B
PHP
Raw Normal View History

2019-03-08 14:15:02 +00:00
<?php
namespace Arma;
2019-03-18 14:49:42 +00:00
class CxDCol extends Col
2019-03-08 14:15:02 +00:00
{
/**
* 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) {
2019-03-09 06:14:36 +00:00
return new CxDCol;
2019-03-08 14:15:02 +00:00
}
}
class_alias(CxDCol::class, 'Arma\\CxDVec');