Click or drag to resize

LSMILogSpace Method

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
C#
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: Double
Logarithmically spaced vector.
See Also