array multiplication

hello
i need to find out how to multiply an 8x8 array by another 8x8 array.....please someone tell me, this is wreckin my head! any info appreciated

Comments

  • : hello
    : i need to find out how to multiply an 8x8 array by another 8x8 array.....please someone tell me, this is wreckin my head! any info appreciated
    :
    :
    please provide source code.

    here something:

    for(int i=0; i < 64; i++){//first loop
    //empty outter loop
    }
    for(int j=0; j < 64; j++){

    //actually multiplication goes here

    array1[8][8]*array2[8][8]
    }
  • : : hello
    : : i need to find out how to multiply an 8x8 array by another 8x8 array.....please someone tell me, this is wreckin my head! any info appreciated
    : :
    : :
    : please provide source code.
    :
    : here something:
    [code]
    for(int i=0; i < 64; i++) { //first loop
    for(int j=0; j < 64; j++){
    //actually multiplication goes here
    [red]array3[i][j] = array1[i][j]*array2[i][j];[/red]
    }
    }
    [/code]

Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Categories