Matrix_uch |
Overview
Matrix_uch is a two-dimensional array of unsigned char number (0-255), i.e. each element in the matrix takes 1 bytes of computer memory.
A matrix_uch can have a null data, so that a particular element whose value equal to the specified value of nulldata will be omitted in matrix computation, for example calculation of minimum, maximum, or in matrix operation, for e.g. matrix overlay.
A matrix_uch also has a flag_null, and its value can be 0 (off) or 1 (on). When flag_null = 0, there is no omission of nulldata.
Member data
Name | Data type | Meaning |
nrow | int | number of rows |
ncol | int | number of columns |
flag_null | bool | a flag indicates whether the null data is omitted in computation(0 = no, 1 = yes) |
nulldata | bool | value of null data (not application if flag_null = 0) |
Operator
See details in operator section.
Construction function
{Matrix_uch} ret = MATRIX_UCH([{int} argm1, {int} argm2, {uchar} argm3])
argm1 = no of row (default = 0)
argm2 = no of column (default = 0)
argm3 = initial value (default = 0)
Example:
->A = Matrix_uch() ->print A no of row : 0 no of column : 0 ->B = Matrix_uch(3,2, 10.15) ->B ans = no of row : 3 no of column : 2 0: 10 10 1: 10 10 2: 10 10 |
Lfunction
object({int} argm1, {int} argm2) = {uchar} left-value
argm1 = row index
argm2 = column index
object.FLAG_NULL() = {bool} left-value
object.NULLDATA() = {double} left-value
Example:
->B(0,0) = 99
->B ans = no of row : 3 no of column : 2 0: 99 10 1: 10 10 2: 10 10 ->B.flag_null() ans = 0 ->B.flag_null() = 1 ->B.flag_null() ans = 1 ->B.nulldata() ans = 0.000 ->B.nulldata() = -90 ->B.nulldata() ans = -90.000 |
Class function