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

37 lines
583 B
PHP

<?php
namespace Arma;
class CxIMat implements CxMat
{
/**
* @inheritdoc
* @return CxIMat
*/
static function init($in_rows, $in_cols, $fill = 0) {}
/**
* @inheritdoc
* @return CxIMat
*/
public static function fromMats($real, $imag) {}
/**
* @inheritdoc
* @return CxIMat
*/
static function fromSparse($sp_mat) {}
/**
* @inheritdoc
* @return CxIMat
*/
static function fromString($text) {}
/**
* @inheritdoc
* @return CxIMat
*/
static function fromVec($vector) {}
}