PHP 클래스 MathPHP\LinearAlgebra\RowVector

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

공개 메소드들

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