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

14 lines
138 B
PHP
Raw Permalink Normal View History

2018-11-09 13:56:34 +00:00
<?php
namespace Arma;
2019-03-26 11:54:58 +00:00
/**
* Sparse matrix.
*
* @package Arma
*/
2019-03-18 14:49:42 +00:00
abstract class SpMat implements Internal\SparseResizableMatrix
2018-11-09 13:56:34 +00:00
{
2019-02-05 13:31:16 +00:00
}