/** * Computes the QR Decomposition of the Matrix `A` using Gram-Schmidt process. * * @category Linear Algebra * @param {Matrix} A * @returns {{ R: Matrix; Q: Matrix }} * @see {@link https://en.wikipedia.org/wiki/QR_decomposition#Using_the_Gram%E2%80%93Schmidt_process} */ export function qr(A: Matrix): { R: Matrix; Q: Matrix; }; import { Matrix } from "../matrix/index.js"; //# sourceMappingURL=qr.d.ts.map