How can I use pcolor for cell array
Show older comments
I really appriceiate help me to plot attached file for cell format. Thanks in advance.
figure
pcolor(datenum(Time),-PRES,TEMP);shading flat;colorbar
set(gca,'Color',[0.5 0.5 0.5]);
colormap(jet)
3 Comments
Walter Roberson
on 9 Apr 2020
pcolor cannot be used for cell arrays.
You can consider cellfun to invoke pcolor on each member of the cell, but unless you were careful they would all appear on top of each other hiding the earlier ones below the later ones.
Farshid Daryabor
on 9 Apr 2020
Walter Roberson
on 9 Apr 2020
You could probably use something like that, but your cell arrays have 358 entries, and you have a figure() call there, so you would end up making 358 figures. Is that what you wanted?
Answers (0)
Categories
Find more on Data Type Conversion 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!