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

31 lines
460 B
PHP
Raw Normal View History

2018-11-09 13:56:34 +00:00
<?php
namespace Arma;
2019-02-05 13:31:16 +00:00
class IMat implements Mat
2018-11-09 13:56:34 +00:00
{
/**
* @inheritdoc
2019-02-05 13:31:16 +00:00
* @return IMat
2018-11-09 13:56:34 +00:00
*/
static function init($in_rows, $in_cols, $fill = 0) {}
/**
* @inheritdoc
2019-02-05 13:31:16 +00:00
* @return IMat
2018-11-09 13:56:34 +00:00
*/
static function fromSparse($sp_mat) {}
/**
* @inheritdoc
2019-02-05 13:31:16 +00:00
* @return IMat
2018-11-09 13:56:34 +00:00
*/
static function fromString($text) {}
/**
* @inheritdoc
2019-02-05 13:31:16 +00:00
* @return IMat
2018-11-09 13:56:34 +00:00
*/
static function fromVec($vector) {}
}