when two individual number remain in one cell such as a cell contain [300;350]. then how can i extact a single value from the cell?
조회 수: 3 (최근 30일)
이전 댓글 표시
clc clear x1=5; x2=3; x3=2; p=cell(3,1); for i=1:4 if i==1 x1=6; elseif i==2 x1=7; elseif i==3 x1=8; end p{i}=[x1-x2; x1-x3] end
댓글 수: 0
채택된 답변
David Sanchez
2014년 6월 4일
To extract elements form a cell:
p{1}(1) % this will return first element of first cell
p{3}(2) % this will return second element of third cell
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!