PHP Class MathPHP\LinearAlgebra\ColumnVector

[x₁] x = [x₂] [⋮ ] [xm]
Inheritance: extends Matrix
Afficher le fichier Open project: markrogoyski/math-php

Méthodes publiques

Méthode Description
__construct ( array $M ) Allows the creation of a ColumnVector (m × 1 Matrix) from an array instead of an array of arrays.
transpose ( ) : RowVector Transpose The transpose of a column vector is a rpw vector

Method Details

__construct() public méthode

Allows the creation of a ColumnVector (m × 1 Matrix) from an array instead of an array of arrays.
public __construct ( array $M )
$M array 1-dimensional array of vector values

transpose() public méthode

[x₁]ᵀ [x₂] = [x₁ x₂ ⋯ xm] [⋮ ] [xm]
public transpose ( ) : RowVector
Résultat RowVector