How to compute singular decompostion matrix

Can you explain or provide an example of how to compute SVD?

Thank you

Hi @Sunita

It depends on your current knowledge of mathematics. A couple examples:

If you want a simple example done by hand, there are a lot of them on the internet. For example, a pdf, a video and many more, just search :slight_smile: .

What matters is that you understand the concept and the calculations are done easily with single line of code, like np.linalg.svd(X).

Cheers

Thank you very much!