Plotting a graph properly

조회 수: 10 (최근 30일)
AB
AB 2020년 7월 22일
댓글: AB 2020년 7월 22일
%code for plotting the real values of wetted radius vs time
WR_real = real(WR);
WR_real(valid) = 0;
plot(timeSec(:,:,1),WR_real(:,:,1),'LineWidth',2)
xlabel ('Time (s)')
ylabel ('Wetted Radius (m)')
title ('Wetted Radius vs Evaporation Time')
legend('Theoretical')
Hello everyone,
I want to plot a graph and I used the attached code. However, I want to get rid of the vertical blue line on the y axis and the horizontal blue line on the x axis. I am not quite sure how this happened. Does anyone know how to solve this problem?
Thanks and regards
  댓글 수: 1
KSSV
KSSV 2020년 7월 22일
You skip the first value and then plot.

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

채택된 답변

Arthur Roué
Arthur Roué 2020년 7월 22일
%% Plotting
%code for plotting the real values of volume vs time
V_real = real(V);
valid = V_real<0;
V_real(valid) = 0;
plot(timeSec, V_real,'LineWidth',2)
xlabel ('Time (s)')
ylabel ('Volume (m^3)')
title ('Volume vs Evaporation Time')
legend('Theoretical')
%code for plotting the real values of wetted radius vs time
WR_real = real(WR);
WR_real(valid) = 0;
vb = WR_real ~= 0; % find 0 to remove them
plot(timeSec, WR_real,'LineWidth',2); hold on
plot(timeSec(vb), WR_real(vb),'LineWidth',2)
xlabel ('Time (s)')
ylabel ('Wetted Radius (m)')
title ('Wetted Radius vs Evaporation Time')
legend('Theoretical')
  댓글 수: 3
Arthur Roué
Arthur Roué 2020년 7월 22일
I superpose the curve without the zero with a second plot.
plot(timeSec, WR_real,'LineWidth',2); hold on % Original curve, hold on for superposition in axe
plot(timeSec(vb), WR_real(vb),'LineWidth',2) % Curve without zero
Red is'nt going to zero because I also removed this zero. You need to process your data to keep this zero.
AB
AB 2020년 7월 22일
ahh okay thank you for your help :)

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

추가 답변 (1개)

Arthur Roué
Arthur Roué 2020년 7월 22일
편집: Arthur Roué 2020년 7월 22일
This happens because your data looks like that :
WR_real(:,:,1) = [0 1.1 ... 0.2 0 0]*1e-3
To get rid of those lines, remove the zeros at the beginning and the end of your data (and in time vector too to match size)
  댓글 수: 2
AB
AB 2020년 7월 22일
Thank you for your answer but how do I remove the zeros?
I am a bit confused
Arthur Roué
Arthur Roué 2020년 7월 22일
편집: Arthur Roué 2020년 7월 22일
In your case, it seems the zeros are only at the end and beginning. Then you can remove all 0 this way :
% Get index of 0
vb = WR_real(:,:,1) ~= 0
% Plot without the 0
plot(timeSec(vb,:,1),WR_real(vb,:,1),'LineWidth',2)
EDIT : Why WR_real got 3 dimension ?

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

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by