Class GeometricProgression
A geometric progression.
Inherited Members
Namespace: SpiceSharp.Simulations.Sweeps
Assembly: SpiceSharp.dll
Syntax
public abstract class GeometricProgression : ParameterSet, IParameterSet, IEnumerable<double>, IEnumerable
Properties
A
Gets the Initial factor A.
Declaration
protected abstract double A { get; }
Property Value
Type | Description |
---|---|
double |
N
Gets the number of steps.
Declaration
protected abstract int N { get; }
Property Value
Type | Description |
---|---|
int |
R
Gets the progression factor R.
Declaration
protected abstract double R { get; }
Property Value
Type | Description |
---|---|
double |
Methods
GetEnumerator()
Returns an enumerator that iterates through the collection.
Declaration
public IEnumerator<double> GetEnumerator()
Returns
Type | Description |
---|---|
IEnumerator<double> | An enumerator that can be used to iterate through the collection. |