axis color disappear when using the white_jet color map

조회 수: 1 (최근 30일)
Samaneh Arzpeima
Samaneh Arzpeima 2019년 1월 7일
댓글: Samaneh Arzpeima 2019년 1월 9일
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
Walter Roberson
Walter Roberson 2019년 1월 8일
colormap(flipud(jetwhite(256)))
Samaneh Arzpeima
Samaneh Arzpeima 2019년 1월 8일
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

댓글을 달려면 로그인하십시오.

답변 (3개)

KSSV
KSSV 2019년 1월 7일
Try axis on after the plot.

Jim
Jim 2019년 1월 7일
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
Samaneh Arzpeima
Samaneh Arzpeima 2019년 1월 8일
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

댓글을 달려면 로그인하십시오.


Samaneh Arzpeima
Samaneh Arzpeima 2019년 1월 8일
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
Stephen23
Stephen23 2019년 1월 9일
"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 2019년 1월 9일
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.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Colormaps에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by