PHP Класс MathPHP\LinearAlgebra\RowVector

x = [x₁ x₂ ⋯ xn]
Наследование: extends Matrix
Показать файл Открыть проект

Открытые методы

Метод Описание
__construct ( array $N ) Allows the creation of a RowVector (1 × n Matrix) from an array instead of an array of arrays.
transpose ( ) : ColumnVector Transpose The transpose of a row vector is a column vector

Описание методов

__construct() публичный Метод

Allows the creation of a RowVector (1 × n Matrix) from an array instead of an array of arrays.
public __construct ( array $N )
$N array 1-dimensional array of vector values

transpose() публичный Метод

[x₁] [x₁ x₂ ⋯ xn]ᵀ = [x₂] [⋮ ] [xn]
public transpose ( ) : ColumnVector
Результат ColumnVector