export { inner_product } from "./inner_product.js"; export { qr } from "./qr.js"; export { qr_householder } from "./qr_householder.js"; export { simultaneous_poweriteration } from "./simultaneous_poweriteration.js"; export type QRDecomposition = (A: import("../matrix/index.js").Matrix) => { R: import("../matrix/index.js").Matrix; Q: import("../matrix/index.js").Matrix; }; export type EigenArgs = { /** * - The number of maxiumum iterations the algorithm should run. Default is `100` */ max_iterations?: number | undefined; /** * - The seed value or a randomizer used in the algorithm. Default is `1212` */ seed?: number | Randomizer | undefined; /** * - The QR technique to use. Default is `qr_gramschmidt` */ qr?: QRDecomposition | undefined; /** * - Tolerated error for stopping criteria. Default is `1e-8` */ tol?: number | undefined; }; import type { Randomizer } from "../util/index.js"; //# sourceMappingURL=index.d.ts.map