creating a matrix that contains a struct

1 回表示 (過去 30 日間)
Itzik Ben Shabat
Itzik Ben Shabat 2012 年 11 月 6 日
Hi, I want to create a matrix that contains a struct in the first row. and integers in the next rows for example my matrix can look like this A=[[0,0,0],[0,0,1];1,1;0,1]
is there a way t do this? thanks

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2012 年 11 月 6 日
A={[0,0,0],[0,0,1];1,1;0,1}
  1 件のコメント
Azzi Abdelmalek
Azzi Abdelmalek 2012 年 11 月 6 日
編集済み: Azzi Abdelmalek 2012 年 11 月 6 日
n=10;
m=4;
A=cell(3,n)
for k=1:n
A{1,k}=rand(1,m) % eg
A{2,k}=randi(10,1,1) %eg
A{3,k}=randi(10,1,1) % eg
end
%doc cell

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

その他の回答 (1 件)

Itzik Ben Shabat
Itzik Ben Shabat 2012 年 11 月 6 日
Thank you for your answer but A was just an example of a more general need. say i want to creat a matrix thats 3Xn having a 1Xm array in each cell in the first row. second and third rows get integers. how do i construct this? and how do i initialize it? thanks

カテゴリ

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