Module ndarray::linalg

source ·
Expand description

A few linear algebra operations on two-dimensional arrays.

Traits§

Functions§

  • Factor a = L LT.
  • Return the identity matrix of dimension n.
  • Solve a x = b with linear least squares approximation.
  • Solve U x = b where U is an upper triangular matrix.
  • Solve L x = b where L is a lower triangular matrix.

Type Aliases§

  • Column vector.
  • Rectangular matrix.