What is the meaning of vec2ind "Convert vectors to indices"?
1 次查看(过去 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!