axis color disappear when using the white_jet color map

1 Ansicht (letzte 30 Tage)
Samaneh Arzpeima
Samaneh Arzpeima am 7 Jan. 2019
Hello everyone and Happy New Year
I am trying to draw a slip distribution graph and want to show the parts with no slip White
I found a Function in File Exchange "colormap jet_white", it is almost what I need except that by using this function my axis disappear!
Is there any way to superpose axis on top ,or any other way to have my color map from White Zero
  6 Kommentare
Walter Roberson
Walter Roberson am 8 Jan. 2019
colormap(flipud(jetwhite(256)))
Samaneh Arzpeima
Samaneh Arzpeima am 8 Jan. 2019
thank you it gaves me a plot with white color at Zero,almost the same as jet_white(I attached it ).But still my first problem remain, how can I display the axes, like a black line or what ever(like https://jp.mathworks.com/help/matlab/ref/contourf.html).Now I just have slipdis.png ticks label

Melden Sie sich an, um zu kommentieren.

Antworten (3)

KSSV
KSSV am 7 Jan. 2019
Try axis on after the plot.

Jim
Jim am 7 Jan. 2019
Hi Samenah,
The help on jet_white states
"Since the "jet" colormap matrix can vary in size depending on the plot that it will be applied to, this function should be executed after any plot commands."
I wonder if moving the jet_white execution code below all of your plot commands will solve your issue? Please let me know. Thanks.
  1 Kommentar
Samaneh Arzpeima
Samaneh Arzpeima am 8 Jan. 2019
Thank you Jim
I am not sure if i did understand your advice or not,but I moved the colormap command to the very end part of my script(sorry its not a very neat script )
I attached what I've got !!slipdis.png

Melden Sie sich an, um zu kommentieren.


Samaneh Arzpeima
Samaneh Arzpeima am 8 Jan. 2019
clear ;
clc
load d.mat
d.X = d.X+150;
%% Slip distribution
scatter(d.Y,d.X,5,d.Dz);
grid on
axis equal
xlim([-200 200])
ylim([0 300])
axis ij
set(gca, 'XDir','reverse')
ylabel('Down dip (km)','FontSize',12)
xlabel('Along Strike (km)','FontSize',12)
c = colorbar;
set(get(c,'title'),'string','(m)'); %write the title on the top
caxis([0 10])
% colormap jet_white
map = jet_white();
colormap(map)
axis on
hold on
%% drow asp
rectangle('Position',[-17.5 75 35 34.468],'EdgeColor',[0 0 0])
%% drow con
% %find max slip on surface
SurfaceDmax=max(d.Dz(find(d.Z>=0))) %m
%%
maxslip=max(d.Dz);
slipTH=max(d.Dz)*0.1;
id_DZ=d.Dz>=slipTH;
d.Dz=d.Dz(id_DZ);
d.X=d.X(id_DZ);
d.Y=d.Y(id_DZ);
d.Trup=d.Trup(id_DZ);
[X,Y] = meshgrid(linspace(min(d.Y),max(d.Y)), linspace(min(d.X),max(d.X)));
[C,h]=contour(X,Y,griddata(d.Y,d.X,d.Trup,X,Y),[ 70 60 50 45 40 30 25 20 15 10 5 2],'EdgeColor',[0 0 0]);
set(gca, 'XDir','reverse')
clabel(C,h,'FontSize',10,'LabelSpacing',200,'Color','k')
%%
fig.Color = 'gray';
saveas(gcf,'slipdis.png')
saveas(gcf,'slipdis.epsc')
@Stephen Cobeldick it gaves me the graph without the axis slipdis.png
  4 Kommentare
Stephen23
Stephen23 am 9 Jan. 2019
"I couldn't know how to debug and find the problem line!"
You have to learn to use the debugging tools. They are indispensible in any programming language. Start here:
You will also find plenty of (video) tutorials online.
Samaneh Arzpeima
Samaneh Arzpeima am 9 Jan. 2019
I figuered out how to debug. I think the problem started from scatter command.I attached a pdf file with 4 screenshot of debuffing process with the related command under it.the forth figure has no axes.Is there anyway to fix the problem,please.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Colormaps finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by