The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
About singular value decomposition
Howdi?
I am working on Text Mining project.
In text mining, SVD(singular value decomposition) is often used.
If M is a matrix given, SVD decomposes M = U D V^t ..... like this, where D is diagonal matrix
In RapidMiner, if I use SVD, it gives only matrix U and D, then where can I get the component V ??
Thank you...
1
Answers
Let's do some cool linear algebra.
Here is a nice handbook about SVD
https://www.cs.cmu.edu/~venkatg/teaching/CStheory-infoage/book-chapter-4.pdf
On page 29, Exercise 1.6
thus A'= (UDV')' = V DU'.
D'=D because D is a diagonal matrix, (V')'=V is obvious.
So, we can get the component V if we apply SVD operator on the transposed data matrix.
Attached is the example process on sonar data, you can extract the svd vectors by using converters extensions from marketplace.