This method create a data matrix of X*Y values. Each value is dim bits.
Syntax
void ** Matrix_New(
unsigned short x,
unsigned short y,
unsigned short dim
) ;
Parameters
x
Number of columns in the matrix.
y
Number of rows in the matrix.
dim
Dimension of each element of the matrix (in bytes)
Return value
This method return a pointer to the newly created data matrix, or NULL if a problem occurred.
Remarks
Requirements
Header:
sliceO_include.hpp
Library:
sliceO_Structures.lib
Example
See also