Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SVDResult

import type { SVDResult } from "https://git.sr.ht/~ruivieira/deno-experiments/blob/master/mentat/linalg/core.ts";
interface SVDResult {
S: Vector;
U: Matrix;
V: Matrix;
}