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

30 lines
561 B
PHP
Raw Normal View History

2019-03-12 10:14:12 +00:00
<?php
namespace Arma;
2019-03-26 11:54:58 +00:00
/**
* Sparse matrix which contains a single row.
*
* @package Arma
*/
2019-03-18 14:49:42 +00:00
abstract class SpRow implements Internal\SparseResizableVector
2019-03-12 10:14:12 +00:00
{
2019-03-21 10:49:11 +00:00
/**
* Remove the specified range of columns from the row vector.
*
* @param int $first_col
* @param int $last_col
* @return void
*/
function shedCols($first_col, $last_col) {}
2019-03-12 10:14:12 +00:00
2019-03-21 10:49:11 +00:00
/**
* Swap the contents of specified columns.
*
* @param int $col_1
* @param int $col_2
* @return void
*/
function swapCols($col_1, $col_2) {}
2019-03-12 10:14:12 +00:00
}