What is the meaning of vec2ind "Convert vectors to indices"?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
vec2ind
vec = [0 0 1 0; 1 0 0 0; 0 1 0 0]'
vec =
0 1 0
0 0 1
1 0 0
0 0 0
[ind,n] = vec2ind(vec)
ind =
3 1 2
n =
4
Any idea how to get the "3 1 2"?
Thank you
4 Kommentare
Star Strider
am 4 Mär. 2019
The first transposition gets the values for the columns (rather than rows), then the second transposition creates ‘L’ to be the same dimensions ‘T’ originally is.
Antworten (0)
Siehe auch
Kategorien
Mehr zu Statistics and Machine Learning Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!