Vector {Microsoft.VisualBasic.Math.LinearAlgebra} | .NET clr documentation |
A numeric vector
this numeric vector is based on the Vector`1
# namespace Microsoft.VisualBasic.Math.LinearAlgebra
export class Vector extends GenericVector`1 {
Array: double;
Dim: integer;
First: double;
IsNaN: BooleanVector;
# GenericVector`1.Dim为1?即当前的向量对象是否是只包含有一个数字?
IsNumeric: boolean;
IsScalar: boolean;
Last: double;
Length: integer;
# norm2()
#
# 向量模的平方,||x||
是向量x=(x1,x2,…,xp)
的欧几里得范数
Mod: double;
# [min, max]
Range: DoubleRange;
# norm()
#
# http://math.stackexchange.com/questions/440320/what-is-magnitude-of-sum-of-two-vector
SumMagnitude: double;
# normalize
Unit: Vector;
}
IsNaN
: BooleanVectorRange
: DoubleRangeUnit
: Vector