@webarkit/jsfeat-next
Version:
Typescript version of jsfeat for WebARKit
27 lines • 789 B
JavaScript
export class linalg {
JacobiImpl(A, astep, W, V, vstep, n) {
throw new Error("Method not implemented.");
}
JacobiSVDImpl(At, astep, _W, Vt, vstep, m, n, n1) {
throw new Error("Method not implemented.");
}
lu_solve(A, B) {
throw new Error("Method not implemented.");
}
cholesky_solve(A, B) {
throw new Error("Method not implemented.");
}
svd_decompose(A, W, U, V, options) {
throw new Error("Method not implemented.");
}
svd_solve(A, X, B) {
throw new Error("Method not implemented.");
}
svd_invert(Ai, A) {
throw new Error("Method not implemented.");
}
eigenVV(A, vects, vals) {
throw new Error("Method not implemented.");
}
}
//# sourceMappingURL=linalg.js.map