i have a variable having 7 characteristics associated with it.. i have to analyse 15 variables with all 7 parameters.. how to make a 15 x 7 matrix with the obtained charc. of each variable

 Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 19 Juil 2014
Modifié(e) : Azzi Abdelmalek le 19 Juil 2014
You can use a struct class
v=struct('name',{'tom','jerry','kim'},'age',{12 15 20},'height',{6 5 4})
To acces your data
v(1).name
v(1).age
v(3).name
You can also use table
your_vars={'var1' 'var2' 'var3'}'
name={'tom','jerry','kim'}'
age={12 15 20}'
height={6 5 4}'
data=table(name,age,height,'RowNames',your_var)

1 commentaire

RAMESH MUNIRATHINAM
RAMESH MUNIRATHINAM le 21 Juil 2014
thanks for your help.. but if i want to add the details some more persons during the process what will be the command. if the number of person keeps on increasing i cant type the details every time.. instead how to add the details with already built matrix

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

Community Treasure Hunt

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

Start Hunting!

Translated by