| API Reference Guide > Core Component API Reference > Core Component Functions Reference > Double Matrix Functions > IG_double_matrix_create_values |
Creates an HIGDoubleMatrix object with specified dimensions and values.
|
Copy Code
|
|
|---|---|
AT_ERRCOUNT ACCUAPI IG_double_matrix_create_values(
AT_INT RowCount,
AT_INT ColCount,
AT_DOUBLE* lpValues,
HIGDoubleMatrix* lpDoubleMatrix
);
|
|
| Name | Type | Description |
|---|---|---|
| RowCount | AT_INT | Number of rows. |
| ColCount | AT_INT | Number of columns. |
| lpValues | AT_DOUBLE* | Array of RowCount*ColCount double values with which to initialize the matrix. |
| lpDoubleMatrix | HIGDoubleMatrix* | Returns new HIGDoubleMatrix object. |
Returns the number of ImageGear errors that occurred during this function call.
This function does not process image pixels.