Axis labels not appearing on plots
3 次查看(过去 30 天)
显示 更早的评论
Hi, I'm trying to plot results for two sets of data and I'm having two problems. Firstly, the second (numerical) data isn't appearing and secondly none of my axis labels, legend or title is appearing either. My code for the plots is below and any hekp would be greatly appreciated.
%% Plot Section
% Analytical Vs Numerical (WD) for veritcal displacement
figure
subplot(2,1,1) %(Number of rows, number of columns, figure number)
plot(tSim, Ay, 'r--')
hold on
plot(tSim, fNWy, 'k--')
xlabel ('Time [sec]')
ylabel ('Vetical Displacement [m]')
legend('Analytical', 'Numerical (without drag)')
title('Analytical Vs Numerical (WD) for Veritcal Displacement')
hold off
2 个评论
Image Analyst
2020-5-23
Give us data for tSim, Ay, and fNWy in a .mat file so we can run your code. Because when I run it, it looks fine:
% Make sample data:
n = 100
tSim = 1 : n;
Ay = rand(1, n);
fNWy = rand(1,n);
% Poster's code
figure
subplot(2,1,1) %(Number of rows, number of columns, figure number)
plot(tSim, Ay, 'r--')
hold on
plot(tSim, fNWy, 'k--')
xlabel ('Time [sec]')
ylabel ('Vetical Displacement [m]')
legend('Analytical', 'Numerical (without drag)')
title('Analytical Vs Numerical (WD) for Veritcal Displacement')
hold off
Ajay Pattassery
2020-5-26
The code runs fine on my PC with assuming values for tSim, Ay and fNWy. Post if you are getting any error message so that we can help.
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Axis Labels 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!