필터 지우기
필터 지우기

how to set different axis value?

조회 수: 3 (최근 30일)
U B
U B 2023년 2월 14일
답변: Tiisetso Jeanet 2024년 4월 21일
I want to change the axis display value in a contour plot.
xylim = 0.0055 ;
N = 5; x = linspace(-xylim,xylim,N); y = x;
[X,Y] = meshgrid(x,y);
r = (X.^2 + Y.^2); rho = sqrt(r);
f = 0.011 ;
theta = atan(rho./f) ;
CPhi = X./rho; SPhi = Y./rho;
if mod(N,2) == 1
CPhi((N-1)/2+1,(N-1)/2+1) = 1;
SPhi((N-1)/2+1,(N-1)/2+1) = 0;
end
%% Function
n1 = 1;
n2 = 1.5 ;
thetaI = theta;
Th = theta*180/pi;
thetaT = asin((n1./n2).*sin(thetaI));
CTi = cos(thetaI);
CTt = cos(thetaT);
a = (n2.*CTi - n1.*CTt) ;
b = (n2.*CTi + n1.*CTt) ;
c = (n1.*CTi - n2.*CTt) ;
d = (n1.*CTi + n2.*CTt) ;
Rp = a./b;
Rs = c./d;
figure,contourf(X,Y,Rp,20);
Now the x and y axis has value -5 to +5 mm, from the below image we can see. I want to change the axis value from X and Y to the value of the red cross line of the Th value chart(below image) which is a function of X and Y. So new x axis should be [26.5651 14.0362 0 140362 26.5651} and new y axis [26.5651 14.0362 0 140362 26.5651}. can anyone help me please? Thank you.

채택된 답변

Kevin Holly
Kevin Holly 2023년 2월 14일
xylim = 0.0055 ;
N = 5; x = linspace(-xylim,xylim,N); y = x;
[X,Y] = meshgrid(x,y);
r = (X.^2 + Y.^2); rho = sqrt(r);
f = 0.011 ;
theta = atan(rho./f) ;
CPhi = X./rho; SPhi = Y./rho;
if mod(N,2) == 1
CPhi((N-1)/2+1,(N-1)/2+1) = 1;
SPhi((N-1)/2+1,(N-1)/2+1) = 0;
end
%% Function
n1 = 1;
n2 = 1.5 ;
thetaI = theta;
Th = theta*180/pi;
thetaT = asin((n1./n2).*sin(thetaI));
CTi = cos(thetaI);
CTt = cos(thetaT);
a = (n2.*CTi - n1.*CTt) ;
b = (n2.*CTi + n1.*CTt) ;
c = (n1.*CTi - n2.*CTt) ;
d = (n1.*CTi + n2.*CTt) ;
Rp = a./b;
Rs = c./d;
figure,contourf(X,Y,Rp,20);
h=gca;
% X Axis
h.XTick = [-0.0055,-0.0028,0,0.0028,0.0055];
newx = [26.5651 14.0362 0 140362 26.5651];
h.XAxis.TickLabels = {newx};
% Y Axis
h.YTick = [-0.0055,-0.0028,0,0.0028,0.0055];
newy = [26.5651 14.0362 0 140362 26.5651];
h.YAxis.TickLabels = {newx};
  댓글 수: 1
Walter Roberson
Walter Roberson 2023년 2월 14일
this is the changing labels option that I mentioned. As I noted it does not change coordinates for data tips. Or for ginput or similar.

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

추가 답변 (2개)

Walter Roberson
Walter Roberson 2023년 2월 14일
there are two different things you might mean.
If you want to change the actual x and y coordinates to the ones you indicated then you will have problems because your coordinates are not sorted and you would be warping the contour over an irregular surface. It could be done if strictly necessary, but it would take some work to transform the contour into something that could be warped over a surface.
But possibly you just want to change the x and y labels. You can do that by calling xtick and ytick and xlabel and ylabel routines. This would only change the decoration and would not for example affect datatips

Tiisetso Jeanet
Tiisetso Jeanet 2024년 4월 21일
how to make the x-axis have have an interval running from 1990:2022 having space of 5
e.g 1990,1995

카테고리

Help CenterFile Exchange에서 Grid Lines, Tick Values, and Labels에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by