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

18 lines
302 B
PHP
Raw Normal View History

2019-03-08 14:15:02 +00:00
<?php
namespace Arma;
2019-03-26 11:54:58 +00:00
/**
* Subview of a dense matrix.
*
* @package Arma
*/
2019-03-18 14:49:42 +00:00
abstract class SvMat implements Internal\DenseNonResizableMatrix, Internal\Subview
2019-03-08 14:15:02 +00:00
{
2019-10-08 15:44:28 +00:00
/**
* Create a new matrix with elements copied from this matrix subview.
* @return Mat
*/
function toMat() {}
2019-03-08 14:15:02 +00:00
}