Numerix v0.5.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 Source
dot(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 Source
l1_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 Source
l2_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 Source
norm(integer(), Numerix.Common.maybe_vector()) :: Numerix.Common.maybe_float()
The p-norm of a vector.