Click or drag to resize

CVVUUniformDist Method

Fill with uniformly distributed values.

Namespace:  Geosoft.Desktop.GXNet
Assembly:  geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntax
public static void UniformDist(
	CVV vv,
	int seed,
	double min,
	double max,
	int length
)

public static void UniformDist(
	CVV vv,
	int seed,
	double min,
	double max,
	int length
)

Parameters

vv
Type: GeoEngine.Core.GXNetCVV
VV object
seed
Type: SystemInt32
Random number generator seed
min
Type: SystemDouble
Minimum of range
max
Type: SystemDouble
Maximum of range
length
Type: SystemInt32
Number of values (-1 for all)
Remarks
VV is set to input length (except for -1) See rand.gxh for a short discription of the random number generator used.
See Also