What is the meaning of vec2ind "Convert vectors to indices"?

조회 수: 3 (최근 30일)
Matlaber
Matlaber 2019년 3월 4일
댓글: Matlaber 2019년 3월 4일
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"?
pci.PNG
Thank you
  댓글 수: 4
Star Strider
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.
Matlaber
Matlaber 2019년 3월 4일
Thanks.
Are you able to
data=load('iris');
It said:
>> data=load('iris');
Error using load
Unable to read file 'iris'. No such file or directory.
I am able to
data=load('fisheriris');
in sample dataset in mathwork Simple Data Set link
But cannot find "iris" dataset
Thank you.

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile 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!

Translated by