creating a matrix that contains a struct
조회 수: 1 (최근 30일)
이전 댓글 표시
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
댓글 수: 0
채택된 답변
Azzi Abdelmalek
2012년 11월 6일
A={[0,0,0],[0,0,1];1,1;0,1}
댓글 수: 1
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개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Structures에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!