Question: Performs Singular Value Decomposition (SVD)

I want to implement from the following,

> A := `<|>`(`<,>`(6, 2, 1, 6, 8, 3), `<,>`(4, 3, 7, 1, 7, 2), `<,>`(3, 7, 2, 4, 3, 9));

> b := `<,>`(55, 37, 40, 33, 60, 75);


the procedure:

A x X = B
X = A x BA = U x S x V (Singular value decomposition of A)
A = V x S x U(Generalized inverse or pseudoinverse of A)
X = V x Sx Ux B

Least square fit solution
x = 2.63293929474354
y = 3.66652382290048
z = 5.20251471911851

Gracias

This has been branched into the following page(s):
Please Wait...