What colormap I should choose to plot my figure like I attached to this question?

2 Ansichten (letzte 30 Tage)
Say my code is
[Shot] = (ReadRSS('Pshot.rss'));
figure(1),
subplot(1,3,1);
imagesc(Shot); xlabel('Offset (m)'); ylabel('Time (ms)');
color=caxis; caxis(color*.005); colormap(gray);
I want to plot in the colormap shown in the attached figure rather than gray map.

Akzeptierte Antwort

Bjorn Gustavsson
Bjorn Gustavsson am 3 Mär. 2021
You will find a couple of red-blue colormap-functions on the file exchange: redblue-colormap-generator-with-zero-as-white-or-black, diverging-redblue-colormap-from-tecplot and red-blue-colormap. Either of those should give you the colormap you want. Further fine-tuning you have to do yourself...
HTH
  2 Kommentare
Nisar Ahmed
Nisar Ahmed am 3 Mär. 2021
Hi Bjorn,
Thanks, I tried as
y = caxis;
colormap(redblueu(64,[-11,0]));
but nothing appears in the figure except light red shaded graphics. Can you help to define the code here

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Colormaps finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by