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/internal/SparseResizableMatrix.php
2019-04-04 16:07:37 +08:00

34 lines
535 B
PHP

<?php
namespace Arma\Internal;
use Arma\SpMapVal;
/**
* Interface for resizable (non-subview) sparse matrices.
*
* @package Arma\Internal
*/
interface SparseResizableMatrix extends SparseMatrix, ResizableMatrix
{
// Subview
/**
* {@inheritdoc}
*
* @param int $i
* @param int $j[optional]
* @return SpMapVal
*/
function __invoke($i, $j);
/**
* {@inheritdoc}
*
* @param int $i
* @param int $j[optional]
* @return SpMapVal
*/
function at($i, $j);
}