Plot specific cells of cell array

3 次查看(过去 30 天)
Hi everyone i have a cell array that has some empty cells end the other ones are filled with 1x30 double numbers.
Does anyone know how can i plot only the filled cells vs lets say the numbers 1 to 30 and save each separate plot?
My cell array looks like this but with more cells
[] []
1x30 double 1x30 double
[] []
1x30 double 1x30 double

采纳的回答

Chunru
Chunru 2022-9-14
A{1,1}=[]; A{1,2}=[];
A{2,1}=rand(1, 30); A{2,2}=rand(1,30);
A{3,1}=[]; A{3,2}=[];
for i=1:numel(A)
if ~isempty(A{i})
figure
plot(A{i})
% save figure
end
end

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by