plot cell arrays...
Ältere Kommentare anzeigen
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
Akzeptierte Antwort
Weitere Antworten (2)
Jorge Alliende
am 28 Mär. 2014
Bearbeitet: Jorge Alliende
am 28 Mär. 2014
You can plot your cell data in this way:
figure;
hold on;
cellfun(@plot,MyCell);
Best
Jorge
1 Kommentar
PRASHANT TIWARI
am 5 Mär. 2022
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
am 31 Mai 2022
0 Stimmen
Everyone, understand question?
Kategorien
Mehr zu Annotations finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!