ILNumerics - Technical Application Development
Assembly: ILNumerics.Computing (in ILNumerics.Computing.dll) Version: 5.5.0.0 (5.5.7503.3146)
Row vector with 'length' elements logarithmically spaced between 10start and 10end.
Create logarithmically spaced row vector
[ILNumerics Computing Engine]
Namespace: ILNumerics
Assembly: ILNumerics.Computing (in ILNumerics.Computing.dll) Version: 5.5.0.0 (5.5.7503.3146)
Syntax
public static RetArray<double> logspace( InArray<double> start, InArray<double> end, InArray<double> length )
Parameters
- start
- Type: ILNumericsInArrayDouble
First exponent value - end
- Type: ILNumericsInArrayDouble
Last exponent value - length
- Type: ILNumericsInArrayDouble
Number of elements to create
Return Value
Type: RetArrayDoubleRow vector with 'length' elements logarithmically spaced between 10start and 10end.
Remarks
If end equals pi than the upper interval for the values returned is π and the range is: [10^start...π]
If length is 1 than a single value of 10end is returned.
[ILNumerics Computing Engine]
See Also