Advertisement
Guest User

Untitled

a guest
Sep 20th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.55 KB | None | 0 0
  1. load soundingdata.mat;
  2. pressure = soundingdata(:,1);
  3. height = soundingdata(:,2);
  4. temps = soundingdata(:,3);
  5. rh = soundingdata(:,5);
  6. plot(temps,height,"r")
  7. title("Atmospheric Sounding Temperature - 9/16/2019")
  8. ylabel("Height above ground in ft")
  9. xlabel("Temperature in C")
  10. plot(rh,height)
  11. title("Atmospheric Sounding Pressure - 9/16/2019")
  12. ylabel("Height above ground in ft")
  13. xlabel("Relative Humidity in %")
  14. plot(pressure,height)
  15. title("Atmospheric Sounding Pressure - 9/16/2019")
  16. ylabel("Height above the ground in ft")
  17. xlabel("Pressure in hPa")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement