The Array2D type exposes the following members.

Constructors

  NameDescription
Public methodArray2D(Array2D)
Constructor
Public methodArray2D(Int32, Int32)
Constructor
Public methodArray2D(Int32, Int32, Single)
Constructor

Methods

  NameDescription
Public methodAbs
Sets each value to its absolute value by comparison with float(0)
Public methodStatic memberCreateArray
Creates 2D array from mathematical function
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGaussianFilter
Apply a Gaussian filter with length scale r, extending over a square of half-width n (so n=1 uses a square of 9 points, n = 2 uses 25 etc). Suggest using n at least 2*r.
Public methodGetAt
Checked access - unwraps if wrapping set
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodInterpolate
Interpolate
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodPow
Raise array elements to a power
Public methodResize
Allows resizing. Data will be lost if resizing occurred
Public methodSetAt
Checked access - unwraps if wrapping set
Public methodSetRange
Scale to fit within range...
Public methodSetTo
Set to a constant value
Public methodShift
Shifts all the elements...
Public methodToString
Returns a String that represents the current Object.
(Inherited from Object.)

Fields

  NameDescription
Public fieldArray
Array

Properties

  NameDescription
Public propertyItem
! Unchecked access - no wrapping
Public propertyMax
Gets or Sets max
Public propertyMin
Gets or Sets min
Public propertyNx
Gets the 'x' size of the array
Public propertyNz
Gets the 'y' size of the array
Public propertyWrap
enables/disables wrapping

See Also