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/SpCol.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 column.
*
* @package Arma
*/
2019-03-18 14:49:42 +00:00
abstract class SpCol implements Internal\SparseResizableVector
2019-03-12 10:14:12 +00:00
{
2019-03-21 10:49:11 +00:00
/**
* Remove the specified range of rows from the column vector.
*
* @param int $first_row
* @param int $last_row
* @return void
*/
function shedRows($first_row, $last_row) {}
2019-03-12 10:14:12 +00:00
2019-03-21 10:49:11 +00:00
/**
* Swap the contents of specified rows.
*
* @param int $row_1
* @param int $row_2
* @return void
*/
function swapRows($row_1, $row_2) {}
2019-03-12 10:14:12 +00:00
}