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/NonResizableMatrix.php
2019-06-12 11:06:18 +08:00

19 lines
337 B
PHP

<?php
namespace Arma\Internal;
/**
* Interface for non-resizable matrices (subview).
*
* @package Arma\Internal
*/
interface NonResizableMatrix extends NonResizable, Matrix
{
/**
* Set the elements along the main diagonal to one and off-diagonal elements to zero.
*
* @return $this
*/
function eye();
}