How do you plot elements of a cell array?
22 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
L'O.G.
am 13 Jan. 2023
Kommentiert: Cameron
am 8 Mai 2023 um 21:36
Given a cell array where each element contains a vector of numbers of type double, I select a few elements to analyze. They are all collected for the same x data. In general, how would I generate a figure with plots of any arbitrary number of cell array elements of vectors of type double?
Would it make sense to output the desired cell array elements into a matrix and then plot that? The corresponding matrix of x values would (I think) be the same size, and the columns would be identical to one another since the x data are the same. If that's the case, how do I do that?
0 Kommentare
Akzeptierte Antwort
Cameron
am 13 Jan. 2023
Loop through your cells and use the hold on then hold off command.
cellData{1} = [(1:20)',(1:20)' + rand(20,1)];
cellData{2} = [(1:20)',2*(1:20)' + rand(20,1)];
cellData{3} = [(1:20)',3*(1:20)' + rand(20,1)];
cellData{4} = [(1:20)',4*(1:20)' + rand(20,1)];
hold on
for CellColumn = 1:length(cellData)
plot(cellData{CellColumn}(:,1),cellData{CellColumn}(:,2),'-o')
end
hold off
4 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Find more on Desktop in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!