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