Search:

Type: Posts; User: ColeBacha

Search: Search took 0.00 seconds.

  1. Replies
    5
    Views
    8,988

    Whoops. As I was trying to isolate the problem...

    Whoops. As I was trying to isolate the problem and reproduce it, I forgot to set it to a number. I meant to write [CODE]inverseMatrix[i][j] = j;[\CODE]. However, this still doesn't modify the matrix.
  2. That works, thanks for the help and useful...

    That works, thanks for the help and useful information.
  3. Replies
    5
    Views
    8,988

    Can't change global 2d array variable

    I've tried creating a reference to the pointer and modifying that, like this, but that hasn't worked either.


    float **temp = &inverseMatrix;
    temp[0][0] = 8;

    I've also tried setting the...
  4. Declare 2D array without size, give size later

    I've got an interesting problem.
    I can't determine the dimensions of the 2D array until I get the information from the if or the else if, so I would like to declare it before that so it is visible...
Results 1 to 4 of 4