Overload List
| # | Signature | Description |
|---|---|---|
| 1 | Double Range | Calculate the range from all calling object elements. |
| └ indexed: Double Range(Int32 Index, Int32 Len) | ||
| 2 | void Range(ref Double ARange, Int32 Index, Int32 Len) | Calculate the range from calling object elements [Index]..[Index+Len-1]. The result ARange is a real value. |
Overload 1: Double Range
Calculate the range from all calling object elements.
Returns: Double
Indexed: Double Range(Int32 Index, Int32 Len)
Returns real range value from calling object elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | Int32 | start index |
| 2 | Len | Int32 | element count |
Returns: Double
Remarks:
An exception is raised if calling object Dew.Math.Matrix.Complex property is true or array borders are overrun.
Overload 2: void Range(ref Double ARange, Int32 Index, Int32 Len)
Calculate the range from calling object elements [Index]..[Index+Len-1]. The result ARange is a real value.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | ARange | Double (ref) | output |
| 2 | Index | Int32 | start index |
| 3 | Len | Int32 | element count |
Result: stored in self (calling object)
Remarks:
An exception is raised if calling object Dew.Math.Matrix.Complex property is true or array borders are overrun/underrun.