i want to allocate a matrix.
is this the only option:
int** mat = (int**)malloc(rows * sizeof(int*))
for (int index=0;index<row;++index)
{
mat[index] = (int*)malloc(col * sizeof(int));
}
thanks
|
|
|
Well, you didn't give us a complete implementation. I assume that you meant.
Here's another option:
Then, you simulate the matrix using
for row-major ordering and
for column-major ordering. One of these two options is actually the preferred way of handling a matrix in C. This is because now the matrix will be stored contiguously in memory and you benefit from locality of reference. Basically, the CPU cache will a lot happier with you. |
|||||||||
|
|
The other answers already covered these, but for completeness, the comp.lang.c FAQ has a relevant entry: |
|||
|
|
|
You may also use calloc, which will additionally zero initialize the matrix for you. The signature is slightly different:
|
|||
|
|
|
For a N-Dimensional array you can do this:
To access a array cell with the typical way you can do this:
(Note: didnt test now but should work. Translated from my Matlab code, but in Matlab index starts from 1, so i MAY made a mistake (but i dont think so)) Have fun! |
|||
|
|
|
You can collapse it to one call to malloc, but if you want to use a 2d array style, you still need the for loop.
Untested, but you get the idea. Otherwise, I'd stick with what Jason suggests. |
|||||
|
|
what you can do is
and then use this new matrix as mat[i][j] |
|||
|
|