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

 採用された回答

Walter Roberson
Walter Roberson 2012 年 2 月 6 日

2 投票

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 件のコメント

KSSV
KSSV 2012 年 2 月 6 日
Hi Walter.........
First Congratulations on your MATLAB skills. I checked you have answered many many questions. You have answered my questions too, which were very helpful. Thanking you for that..
Coming about this question. I have many cell arrays around 10,000 in numbers. I tried plot(x{:},y{:}). But this plot is ugly. The plot happens to be filled with color and shows only one region. Actually plot has curves with bounded and unbounded regions. I want to plot these curves and fill color in it...
How to manage this ??
Thanks a lot once again..
Sreenu
Logabharathi Aruchamy
Logabharathi Aruchamy 2012 年 4 月 11 日
It helped me a lot. thanks a lot Walter!
PRASHANT TIWARI
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
Jorge Alliende 2014 年 3 月 28 日
編集済み: Jorge Alliende 2014 年 3 月 28 日

5 投票

You can plot your cell data in this way:
figure;
hold on;
cellfun(@plot,MyCell);
Best
Jorge

1 件のコメント

PRASHANT TIWARI
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
Jy Lee 2022 年 5 月 31 日

0 投票

Everyone, understand question?

カテゴリ

タグ

質問済み:

2012 年 2 月 6 日

回答済み:

2022 年 5 月 31 日

Community Treasure Hunt

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

Start Hunting!

Translated by