subploting the cells from arrays

for k = 1:63
data = thething{:,1}(:,4)
subplot(7,9,k)
stem(data)
end
these my codes. thething is 63 cells each with different numbers of cells in it. I would like to collect the forth line of data to draw 63 plot. Matlab saying there are 63 results but can not form plots. How can I do?

 采纳的回答

for k = 1:63
data = thething{:,k}(:,4) ;
subplot(7,9,k) ;
stem(data)
end

3 个评论

still do not work on my program. orz
Specify dimensions of your data.....in each cell
thanks for advice

请先登录,再进行评论。

更多回答(0 个)

产品

Community Treasure Hunt

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

Start Hunting!

Translated by