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

44 lines
1.0 KiB
PHP
Raw Normal View History

2019-03-08 14:15:02 +00:00
<?php
namespace Arma;
/**
2019-03-26 11:54:58 +00:00
* Column vector.
2019-03-08 14:15:02 +00:00
*
* @package Arma
*/
2019-03-18 14:49:42 +00:00
abstract class Col implements Internal\DenseResizableVector
2019-03-08 14:15:02 +00:00
{
2019-03-21 10:49:11 +00:00
/**
* At the given row index, insert given number of empty rows and optionally specify
* whether to initialize new elements to zero, or insert a copy of specified object
* (whose column size is the same as the recipient object),
*
* @param int $row_idx
* @param Internal\Dense|int $rows
* @param bool $set_to_zero[optional]
* @return void
*/
function insertRows($row_idx, $rows, $set_to_zero = true) {}
2019-03-08 14:15:02 +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) {}
/**
* Swap the contents of specified rows.
*
* @param int $row_1
* @param int $row_2
* @return void
*/
function swapRows($row_1, $row_2) {}
2019-03-08 14:15:02 +00:00
}
class_alias(Col::class, 'Arma\\Vec');