Anything faster than using pcolor? Figure does not load for me when using pcolor.

5 Ansichten (letzte 30 Tage)
%% Plot energy fraction
fig1=figure(1);
h=pcolor(E_fraction); %% pcolor doesn't print last col/row, so add 1 on each direction
set(fig1,'position',[(5120) (2880) 1300 783])
title(expCond)
colormap(jet)
colorbar
xlabel('Frames aSOI [-]')
ylabel('Cycle #')
ylim([1 numFiles+1])
xlim([1 EOIframes(1)-SOIframes(1)+1])
caxis([0 40]);
xticks([1.5:1:(EOIframes(1)-SOIframes(1)+1)+0.5]);
xticklabels([1:(EOIframes(1)-SOIframes(1)+1)]);
yticks([1.5:1:numFiles+.5]);
yticklabels([1:numFiles]);
set(gca,'Fontsize',20)
set(gca,'color',[1 1 1])
ht = text((EOIframes(1)-SOIframes(1)+1)*1.085, fileCount/2.5,'Intensity Fluctuation [%]');
set(ht,'Rotation',90)
set(ht,'FontSize',20)
hold off

Akzeptierte Antwort

Image Analyst
Image Analyst am 23 Dez. 2022
Try image or imshow.

Weitere Antworten (0)

Tags

Produkte


Version

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by