In This Topic
Create a LUT from components
Syntax
'Declaration
Public Function New( _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Boolean, _
ByVal As Array _
)
'Usage
Dim MinValue As Integer
Dim Bits As Integer
Dim SignedInput As Boolean
Dim Data As Array
Dim instance As New LookupTable(MinValue, Bits, SignedInput, Data)
public LookupTable(
int ,
int ,
bool ,
Array
)
public:
LookupTable(
int ,
int ,
bool ,
Array^
)
Parameters
- MinValue
- The source value mapped to the first value in the LUT
- Bits
- The number of bits in the LUT data
- SignedInput
- True if the LUT is supposed to apply to signed data
- Data
- The LUT data
Requirements
Target Platforms: .NET CLR 4.0 or higher
See Also