What is the meaning of vec2ind "Convert vectors to indices"?
3 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
Star Strider
2019 年 3 月 4 日
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.
回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Statistics and Machine Learning Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!