Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
zATanVariation.cs
2{
7 {
12 : base(Start, Length, Expression)
13 {
14 }
15
19 public override void Operate(ref double x, ref double y)
20 {
21 double zr = 1 + y;
22 double zi = -x;
23
24 double zr2 = 1 - y;
25 double zi2 = x;
26
27 double d = 1.0 / (zr2 * zr2 + zi2 * zi2);
28
29 x = (zr * zr2 + zi * zi2) * d;
30 y = (zi * zr2 - zr * zi2) * d;
31 }
32
36 public override string FunctionName => nameof(ZATanVariation);
37 }
38}
Class managing a script expression.
Definition: Expression.cs:39
override void Operate(ref double x, ref double y)
TODO
ZATanVariation(int Start, int Length, Expression Expression)
TODO
int Length
Length of expression covered by node.
Definition: ScriptNode.cs:101
int Start
Start position in script expression.
Definition: ScriptNode.cs:92