Skip to content

@saehrimnir/druidjs / QRDecomposition

Type Alias: QRDecomposition()

ts
type QRDecomposition<> = (A: Matrix) => {
  Q: Matrix;
  R: Matrix;
};

Defined in: linear_algebra/index.js:5

Type Parameters

Type Parameter

Parameters

ParameterTypeDescription
AMatrix-

Returns

ts
{
  Q: Matrix;
  R: Matrix;
}
NameTypeDefined in
QMatrixlinear_algebra/index.js:7
RMatrixlinear_algebra/index.js:7