svd function

(VARP, VARP, VARP) svd(
  1. VARP a, {
  2. bool fullMatrices = true,
  3. bool computeUV = true,
  4. bool hermitian = false,
})

Implementation

(VARP, VARP, VARP) svd(
  VARP a, {
  bool fullMatrices = true,
  bool computeUV = true,
  bool hermitian = false,
}) {
  final res = F.svd(a);
  return (res[1], res[0], res[2]);
}