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

31 lines
463 B
PHP

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