@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
9 lines • 367 B
TypeScript
/**
* NxN matrix Householder reduction
* Return subfunction to upper Hessenberg matrix by Householder transformation
* @see http://www-in.aut.ac.jp/~minemura/pub/Csimu/C/QRmethod.html
* @param {number[]} a
* @param {number} n
*/
export function matrix_householder_in_place(a: number[], n: number): void;
//# sourceMappingURL=matrix_householder_in_place.d.ts.map