plot cell arrays...
古いコメントを表示
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
採用された回答
その他の回答 (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.
Jy Lee
2022 年 5 月 31 日
0 投票
Everyone, understand question?
カテゴリ
ヘルプ センター および File Exchange で Annotations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!