plot cell arrays...
Mostrar comentarios más antiguos
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
Respuesta aceptada
Más respuestas (2)
Jorge Alliende
el 28 de Mzo. de 2014
Editada: Jorge Alliende
el 28 de Mzo. de 2014
You can plot your cell data in this way:
figure;
hold on;
cellfun(@plot,MyCell);
Best
Jorge
1 comentario
PRASHANT TIWARI
el 5 de Mzo. de 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
el 31 de Mayo de 2022
0 votos
Everyone, understand question?
Categorías
Más información sobre Annotations en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!