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

3 visualizzazioni (ultimi 30 giorni)
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 Commenti
Star Strider
Star Strider il 4 Mar 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.
Matlaber
Matlaber il 4 Mar 2019
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.

Accedi per commentare.

Risposte (0)

Categorie

Scopri di più su Statistics and Machine Learning Toolbox in Help Center e File Exchange

Tag

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by