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

21 lines
354 B
PHP
Raw Normal View History

2018-11-09 13:56:34 +00:00
<?php
namespace Arma;
/**
* Interface for a dense matrix with complex numbers as elements.
*
* @package Arma
*/
interface CxMat extends Mat
{
/**
* Construct a complex matrix out of two non-complex matrices.
*
* @param Mat $real
* @param Mat $imag
2019-02-14 11:11:36 +00:00
* @return static
2018-11-09 13:56:34 +00:00
*/
static function fromMats($real, $imag);
}