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

34 lines
547 B
PHP

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