In This Topic
Create a LUT from components
Syntax
'Declaration
Public Function New( _
ByVal As System.Integer, _
ByVal As System.Integer, _
ByVal As System.Boolean, _
ByVal As System.Array _
)
'Usage
Dim MinValue As System.Integer
Dim Bits As System.Integer
Dim SignedInput As System.Boolean
Dim Data As System.Array
Dim instance As New LookupTable(MinValue, Bits, SignedInput, Data)
public LookupTable(
System.int ,
System.int ,
System.bool ,
System.Array
)
public LookupTable(
: System.Integer;
: System.Integer;
: System.Boolean;
: System.Array
);
public function LookupTable(
: System.int,
: System.int,
: System.boolean,
: System.Array
);
public: LookupTable(
System.int ,
System.int ,
System.bool ,
System.Array*
)
public:
LookupTable(
System.int ,
System.int ,
System.bool ,
System.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.8 or higher
See Also