how can I plot a degree variable, a scalar and a date
    8 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
Hi, so I got three variables: one gives me the direcction of the wind every half an hour, another one gives me the value of the wind every half an hour and finally one gives me the date of each information. How could I plot it to see the evolution of it every day? I upload the data I used.
0 Commenti
Risposte (1)
  KSSV
      
      
 il 6 Dic 2021
        load('DataRaval.mat')
load('Direcwind.mat')
load('Velwind.mat')
thedates = datestr(DataRaval) ;
theta = DirecVentRaval ;
W = VelVentRaval ;
u = W.*cosd(theta) ;
v = W.*sind(theta) ;
figure(1)
x = (1:length(u))' ;
y = ones(size(x)) ; 
quiver(x,y,u,v) ;
xticklabels(thedates)
figure(2)
plot(x,W)
xticklabels(thedates)
3 Commenti
Vedere anche
Categorie
				Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!