How to set() plot in matlab with cell array
27 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hello, ive been trying to set a plots xAxis and yAxis so it plots my cell array.
cellArray = {1,4}. cellArray has 4 cells and each cell is a 1024X1 array.
Ive tried
set(hPlot3, 'Xdata',1:1024,'Ydata',[cellArray(:)]);
And tried setting cell array to matrix and plotting:
A = cell2mat(cellArray);
set(hPlot3, 'Xdata',1:1024,'Ydata',A);
But both have error'Value must be a vector of numeric type'.
I tried looking up setting a plot with cell arrays involved but didnt find anything.
I know this is simple fix but am having a very hard time with it.Apologies.
using this allows me to plot 1 cell but not all:
set(hPlot3, 'Xdata',1:1024','Ydata',cellArray{1,1}(:));
0 comentarios
Respuestas (2)
Amit
el 16 de En. de 2020
This should work, I think you had missed the transpose of x-array:
A = cell2mat(cellArray);
set(hPlot3, 'Xdata',1:1024','Ydata',A);
1 comentario
Walter Roberson
el 17 de En. de 2020
You cannot do that. When you have multiple lines to plot then each of them must have its own line object
h = plot(x, y_with_multiple_columns)
will give you back an array of line objects, one for each column of y. You would then set() the YData of each of the handles individually.
There is an obscure way to set multiple properties for multiple handles, but you probably should not be using it.
1 comentario
Ver también
Categorías
Más información sobre Line Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!