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

37 lines
586 B
PHP

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