[Scilab-users] Variable user equation input (2, 3 or more)

2022-04-29 Thread Lester Anderson
Hello all, I have a simple code which computes applies the Chinese Remainder theorem (for a single variable) given three input congruence equations to solve for x; not very elegant but it works: My query, is it possible to make this more generalised and vary the number of input equations and

Re: [Scilab-users] Changing properties of mark_mode polyline in param3d1

2022-04-29 Thread Izabela Wójcik-Grząba
The problem is that my real plot is made with param3d1 and consists of different elements: polylines with line_mode, with mark_mode, xstrings. It is now impossible to change the type. Kind regards, Iza --- Izabela Wójcik-Grząba Zespół Konstrukcji Metalowych ZKBiM IIB WIL Politechnika

Re: [Scilab-users] Changing properties of mark_mode polyline in param3d1

2022-04-29 Thread Stéphane Mottelet
Hello, You should rather use scatter3d, which allows to give different colors to markers (and scale the color wrt a given color vector) S. Le 29/04/2022 à 12:49, Izabela Wójcik-Grząba a écrit : Hello, I have a simple example of param3d1 graph: param3d1([1 2 3],[3 4 2],[5 2 4]); h=gce();

[Scilab-users] Changing properties of mark_mode polyline in param3d1

2022-04-29 Thread Izabela Wójcik-Grząba
Hello, I have a simple example of param3d1 graph: param3d1([1 2 3],[3 4 2],[5 2 4]); h=gce(); h.line_mode="off"; h.mark_mode="on"; h.mark_sytle=9; h.mark_size=1; h.mark_foreground=13; h.mark_background=13; I would like to ask if it's possible to change properties of marks