Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
zCubeVariation.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 r = x * x - y * y;
22 double i = 2 * x * y;
23
24 double x2 = r * x - i * y;
25 y = r * y + i * x;
26 x = x2;
27 }
28
32 public override string FunctionName => nameof(ZCubeVariation);
33 }
34}
Class managing a script expression.
Definition: Expression.cs:39
ZCubeVariation(int Start, int Length, Expression Expression)
TODO
override void Operate(ref double x, ref double y)
TODO
int Length
Length of expression covered by node.
Definition: ScriptNode.cs:101
int Start
Start position in script expression.
Definition: ScriptNode.cs:92