axis color disappear when using the white_jet color map

2 ビュー (過去 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 Center および File ExchangeColormaps についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by