plot cell arrays...
106 次查看(过去 30 天)
显示 更早的评论
Hi all
How to plot the data which is in cell arrays? When I use plot I get the following error.
"Conversion to double from cell is not possible"
Thanks in advance
Sreenu
0 个评论
采纳的回答
Walter Roberson
2012-2-6
You cannot plot data that is in cell arrays. Extract the data from the cell arrays and plot that. For example,
plot(MyCell{2,5}, MyCell{3,7})
3 个评论
PRASHANT TIWARI
2022-3-5
编辑:PRASHANT TIWARI
2022-3-5
What if they are in loop.
Stress{i} = [Stress_local{i}(1,1)]
Strain{i} = [Strain_local{i}(1,1)]
on plotting it shows only last ith point.
更多回答(2 个)
Jorge Alliende
2014-3-28
编辑:Jorge Alliende
2014-3-28
You can plot your cell data in this way:
figure;
hold on;
cellfun(@plot,MyCell);
Best
Jorge
1 个评论
PRASHANT TIWARI
2022-3-5
Stress_local{i}(1,1)
Strain_local{i}(1,1)
how to plot for Stress_local{i}(1,1) vs Strain_local{i}(1,1) for each i value not only last value.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Annotations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!