フィルターのクリア

Help on creating an cell array

1 回表示 (過去 30 日間)
Steven
Steven 2013 年 7 月 28 日
I am trying to create an cell array that will show names and ages of each person. I do not know how to begin with structuring this.

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 7 月 28 日
編集済み: Azzi Abdelmalek 2013 年 7 月 28 日
A={'Name' 'Age';'Mick' 70;'Jhon' 80}
%or
header={'name' 'age'}
names={'Mick';'Jhon';'Ana'}
ages={70;80;20}
Yourcell=[header;[names ages]]
% Or you can also use a struct array
v=struct('name',{'Mick','Jhon','Ana'},'Age',{70 80 20})
% If you want to access to each element:
%first person
v(1).name
v(1).Age
%second person
v(2).name
v(2).Age
  1 件のコメント
Steven
Steven 2013 年 7 月 28 日
Thank you very much! Those examples were very helpful.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeStructures についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by