Re: [Scilab-users] 22.5° ray separations in polarplot

2019-03-28 Thread P M
...well you always can kind of rebuild the polarplot. See example below, Best regard, Philipp clc;clear();x = (0:360)/180*%pi;y = 0.5*(1 + cos(x));z = 0.5 + 0.5*(1 + cos(x));clfpolarplot([x' x'],[y' z'],[1 2]) a = gca();// clear old scale...first 24 entries we want to change//24 = 12x text + 12x l

Re: [Scilab-users] 22.5° ray separations in polarplot

2019-03-27 Thread Samuel Gougeon
Le 27/03/2019 à 21:37, Heinz Nabielek a écrit : Friends and colleagues: Scilab polarplot does a great job displaying my 155,508 measured data pairs wind direction/ wind speed in a split second( while MS Excel is petrified) to make a great wind rose. One concern: I would like to change the def

Re: [Scilab-users] 22.5° ray separations in polarplot

2019-03-27 Thread Federico Miyara
Heinz, VERY LONG :) I've found that the gca() (get current axes) handle allows to see and control many properties. First run this example: x = (0:360)/180*%pi; y = 0.5*(1 + cos(x)); z = 0.5 + 0.5*(1 + cos(x)); clf polarplot([x' x'],[y' z'],[1 2]) Entering gca() one of the ent

[Scilab-users] 22.5° ray separations in polarplot

2019-03-27 Thread Heinz Nabielek
Friends and colleagues: Scilab polarplot does a great job displaying my 155,508 measured data pairs wind direction/ wind speed in a split second( while MS Excel is petrified) to make a great wind rose. One concern: I would like to change the default 30° ray separation into 22.5° separations to