help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: wind rose?


From: Thomas D. Dean
Subject: Re: wind rose?
Date: Sat, 29 May 2010 15:36:24 -0700

On Sat, 2010-05-29 at 15:52 -0600, Vergil Weatherford wrote:
> Does anyone know of a way to plot a polar wind rose using
> octave/gnuplot?  I have hourly wind speed and direction data.
> 
> 
> Thanks,
> Vergil
> 
> ********************************************
> Vergil Weatherford
> MS Candidate
> Building Systems Engineering
> University of Colorado - Boulder, USA
> 
> 
> 
> _______________________________________________
> Help-octave mailing list
> address@hidden
> https://www-old.cae.wisc.edu/mailman/listinfo/help-octave
theta=linspace(0,2*pi,100);
rho=10*rand(size(theta));
polar(theta,rho);



reply via email to

[Prev in Thread] Current Thread [Next in Thread]