The logspace function generates logarithmically spaced vectors.
Especially useful for creating frequency vectors.
Generates n points between decades 10^a and 10^b.
Namespace:
FinMath.FactorAnalysis
Assembly:
FinMath (in FinMath.dll) Version: 2.4.7-0a995bd0ea1854c2c868ec3f8dae606c5777e170
Syntax public static double[] LogSpace(
double a,
double b,
int n
)
Parameters
- a
- Type: SystemDouble
Degree of ten to start. - b
- Type: SystemDouble
Degree of ten to finish. - n
- Type: SystemInt32
Number of values to generate.
Return Value
Type:
DoubleLogarithmically spaced vector.
See Also