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

18 lines
300 B
PHP

<?php
namespace Arma;
class CxDRow extends Row
{
/**
* Construct a complex row vector out of two non-complex row vectors.
*
* @param DRow $real
* @param DRow $imag
* @return CxDRow
*/
static function fromRows($real, $imag) {
return new CxDRow;
}
}