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

<?php
namespace Arma;
/**
* Subview of a dense matrix.
*
* @package Arma
*/
abstract class SvMat implements Internal\DenseNonResizableMatrix, Internal\Subview
{
/**
* Create a new matrix with elements copied from this matrix subview.
* @return Mat
*/
function toMat() {}
}