Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
zLnVariation.cs
1
using
System;
2
3
namespace
Waher.Script.Fractals.IFS.Variations.ComplexVariations
4
{
8
public
class
ZLnVariation
:
FlameVariationZeroParameters
9
{
13
public
ZLnVariation
(
int
Start
,
int
Length
,
Expression
Expression
)
14
: base(
Start
,
Length
,
Expression
)
15
{
16
}
17
21
public
override
void
Operate
(ref
double
x, ref
double
y)
22
{
23
// ln(x+iy)
24
x = Math.Sqrt(x * x + y * y);
25
y = Math.Atan2(y, x);
26
}
27
31
public
override
string
FunctionName
=> nameof(
ZLnVariation
);
32
}
33
}
Waher.Script.Expression
Class managing a script expression.
Definition:
Expression.cs:39
Waher.Script.Fractals.IFS.Variations.ComplexVariations.ZLnVariation
TODO
Definition:
zLnVariation.cs:9
Waher.Script.Fractals.IFS.Variations.ComplexVariations.ZLnVariation.ZLnVariation
ZLnVariation(int Start, int Length, Expression Expression)
TODO
Definition:
zLnVariation.cs:13
Waher.Script.Fractals.IFS.Variations.ComplexVariations.ZLnVariation.FunctionName
override string FunctionName
TODO
Definition:
zLnVariation.cs:31
Waher.Script.Fractals.IFS.Variations.ComplexVariations.ZLnVariation.Operate
override void Operate(ref double x, ref double y)
TODO
Definition:
zLnVariation.cs:21
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
zLnVariation.cs
Generated by
1.9.5