How to change the options in the figure of z-axis?
1 回表示 (過去 30 日間)
古いコメントを表示
0 件のコメント
採用された回答
madhan ravi
2018 年 11 月 10 日
編集済み: madhan ravi
2018 年 11 月 10 日
function main
%Set initial values for r, theta, z
r00 = 10;
theta00 = 0;
z00 = 1.0;
y0 = [r00 theta00 z00];
% Set model parameters
z0 = 0.0;
a = 0.2;
gamma_inf = 1000.0;
nu = 1.3;
% Set integration period
tspan = 0:0.001:10;
% Call integrator
fun = @(t,y)[-a*y(1);gamma_inf/(2*pi*y(1)^2)*(1-exp(-a*y(1)^2/(2*nu)));2*a*(y(3)-z0)];
[T Y] = ode45(fun,tspan,y0);
R = Y(:,1);
THETA = Y(:,2);
Z = -Y(:,3);
[x y] = pol2cart(THETA,R);
h=plot3(x,y,Z,'r', 'LineWidth', 1')
hold on;
plot3 ([0,0],[0,0],[Z(end),0],'--b')
grid on
xlabel x-axis
ylabel y-axis
zlabel z-axis
zticklabels({'0','10','20','30','40','50','60'})
set(h,'Zdir','reverse')
hold off
11 件のコメント
madhan ravi
2018 年 11 月 10 日
Anytime :) make sure to accept the answer if it was what you were looking for
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Annotations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!