Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
zSqrVariation.cs
1
namespace
Waher.Script.Fractals.IFS.Variations.ComplexVariations
2
{
6
public
class
ZSqrVariation
:
FlameVariationZeroParameters
7
{
11
public
ZSqrVariation
(
int
Start
,
int
Length
,
Expression
Expression
)
12
: base(
Start
,
Length
,
Expression
)
13
{
14
}
15
19
public
override
void
Operate
(ref
double
x, ref
double
y)
20
{
21
double
x2 = x * x - y * y;
22
y = 2 * x * y;
23
x = x2;
24
}
25
29
public
override
string
FunctionName
=> nameof(
ZSqrVariation
);
30
}
31
}
Waher.Script.Expression
Class managing a script expression.
Definition:
Expression.cs:39
Waher.Script.Fractals.IFS.Variations.ComplexVariations.ZSqrVariation
TODO
Definition:
zSqrVariation.cs:7
Waher.Script.Fractals.IFS.Variations.ComplexVariations.ZSqrVariation.FunctionName
override string FunctionName
TODO
Definition:
zSqrVariation.cs:29
Waher.Script.Fractals.IFS.Variations.ComplexVariations.ZSqrVariation.ZSqrVariation
ZSqrVariation(int Start, int Length, Expression Expression)
TODO
Definition:
zSqrVariation.cs:11
Waher.Script.Fractals.IFS.Variations.ComplexVariations.ZSqrVariation.Operate
override void Operate(ref double x, ref double y)
TODO
Definition:
zSqrVariation.cs:19
Waher.Script.Fractals.IFS.Variations.FlameVariationZeroParameters
TODO
Definition:
FlameVariationZeroParameters.cs:16
Waher.Script.Model.ScriptNode.Length
int Length
Length of expression covered by node.
Definition:
ScriptNode.cs:101
Waher.Script.Model.ScriptNode.Start
int Start
Start position in script expression.
Definition:
ScriptNode.cs:92
Waher.Script.Fractals.IFS.Variations.ComplexVariations
Definition:
zACosVariation.cs:5
IoTGateway
Script
Waher.Script.Fractals
IFS
Variations
ComplexVariations
zSqrVariation.cs
Generated by
1.9.5