Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
zASinVariation.cs
1using System.Numerics;
2
4{
9 {
14 : base(Start, Length, Expression)
15 {
16 }
17
21 public override void Operate(ref double x, ref double y)
22 {
23 Complex z = new Complex(x, y);
24 z = -Complex.Log(z * Complex.ImaginaryOne + Complex.Sqrt(1 - z * z)) * Complex.ImaginaryOne;
25
26 x = z.Real;
27 y = z.Imaginary;
28 }
29
33 public override string FunctionName => nameof(ZASinVariation);
34 }
35}
Class managing a script expression.
Definition: Expression.cs:39
override void Operate(ref double x, ref double y)
TODO
ZASinVariation(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