Numerix v0.6.0 Numerix.LinearAlgebra View Source
Linear algebra functions used for vector operations, matrix factorization and matrix transformation.
Link to this section Summary
Functions
The sum of the products of two vectors.
The L1 norm of a vector, also known as Manhattan norm.
The L2 norm of a vector, also known as Euclidean norm.
The p-norm of a vector.
Link to this section Functions
Link to this function
dot(x, y)
View Sourcedot(Numerix.Common.vector(), Numerix.Common.vector()) :: Numerix.Common.maybe_float()
The sum of the products of two vectors.
Link to this function
l1_norm(vector)
View Sourcel1_norm(Numerix.Common.maybe_vector()) :: Numerix.Common.maybe_float()
The L1 norm of a vector, also known as Manhattan norm.
Link to this function
l2_norm(vector)
View Sourcel2_norm(Numerix.Common.maybe_vector()) :: Numerix.Common.maybe_float()
The L2 norm of a vector, also known as Euclidean norm.
Link to this function
norm(p, x)
View Sourcenorm(integer(), Numerix.Common.maybe_vector()) :: Numerix.Common.maybe_float()
The p-norm of a vector.