PHP 클래스 MathPHP\LinearAlgebra\ColumnVector

[x₁] x = [x₂] [⋮ ] [xm]
상속: extends Matrix
파일 보기 프로젝트 열기: markrogoyski/math-php

공개 메소드들

메소드 설명
__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

메소드 상세

__construct() 공개 메소드

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() 공개 메소드

[x₁]ᵀ [x₂] = [x₁ x₂ ⋯ xm] [⋮ ] [xm]
public transpose ( ) : RowVector
리턴 RowVector