Re: [Scilab-users] more polarplots in one coordinate system

2016-11-28 Thread Maxi041291
Hey Samuel Gaugeon, i would like to have arrows in different colors. I try to show the influence of modes on the answer of my structure. In the beginning of my code iam asking how many modes the user would like to see. This is what i meant with fixed (sorry for the vocab.) what do you mean with

Re: [Scilab-users] more polarplots in one coordinate system

2016-11-28 Thread Serge Steer
Please find attached a new polarplot1 function which is able to do what you want (some refinements may have to be done) Example (sequences of polar plots) phase=[0;-2.8487;-2.993; 2.9664;2.8264;2.9638]; magnitude=[0;1.25e-4;2.17e-4;1.34e-4;7.5e-5;1.32e-4]; allmagnitude=[0; 1.32e-4];

Re: [Scilab-users] more polarplots in one coordinate system

2016-11-28 Thread Samuel Gougeon
Le 28/11/2016 16:01, Maxi041291 a écrit : Thank you for trying to help, but i think i didnt describe my Problem well enough. Normally there should be arrows in the plot, You did not require this previously. but i dont think this is possible in scilab.

Re: [Scilab-users] more polarplots in one coordinate system

2016-11-28 Thread Maxi041291
Thank you for trying to help, but i think i didnt describe my Problem well enough. Normally there should be arrows in the plot, but i dont think this is possible in scilab. But here a Piece of my original code in scilab: clear; clc; phase=[0;-2.8487;-2.993; 2.9664;2.8264;2.9638];

Re: [Scilab-users] more polarplots in one coordinate system

2016-11-28 Thread Samuel Gougeon
Hello Le 28/11/2016 11:12, Maxi041291 a écrit : Hello together, i would like two plot a few polarplots in one coordinate-system. The number of the plots should be defined by the length of a vector. In Matlab i would use the hold on command in a for Loop for it. I know, that i dont Need the

Re: [Scilab-users] xtitle seems to suppress plot

2016-11-28 Thread Jens Simon Strom
My workaround is to allow Scilab a little nap: xdel(); cf=figure("immediate_drawing",'off', 'visible','off','background',8); plot(1:2) cf.immediate_drawing="on"; cf.visible="on"; sleep(100)// xtitle('xtitle() suppresses plot content when not delayed by sleep(). Ver. 5.5.2,