|
Hyperrectangle Constructor (Double, Double, Boolean)
|
Namespace:
Accord.Math
Assembly:
Accord (in Accord.dll) Version: 3.8.0
Syntax public Hyperrectangle(
double[] min,
double[] max,
bool copy = true
)
Public Sub New (
min As Double(),
max As Double(),
Optional copy As Boolean = true
)
Request Example
View SourceParameters
- min
- Type: SystemDouble
The minimum point in the hyperrectangle (the lower bound). - max
- Type: SystemDouble
The maximum point in the hyperrectangle (the upper bound). - copy (Optional)
- Type: SystemBoolean
Whether the passed vectors should be copied into this instance
or used as-is. Default is true (elements from the given vectors will be copied
into new array instances).
See Also