I am doing a program where I'm multiplying matricies, but my big issue is converting from the input into the two arrays that I'll eventually be multiplying. The following is my code for conversion including the declaration of the arrays. (I removed validation that the input is 8 valid floats as I've been debugging it).

    //declare the arrays
float a[2][2];
float b[2][2];
float c[2][2];

int main (int argc, char *argv[])
{
    int i,j,k,l;

    i=0;
    l=4;
// declare and initialize arrays
   for( j =0; j<2; j++)
   {
       for(k=0;k<2; k++)
       {
           a[j][k]=atof[argv[i]];
           b[j][k]=atof[argv[l]];
           i++;
           l++;
       }
   }
......

I get an error when using atof at compilation that says: "subscripted value is neither array nor pointer" I've been looking up the error, but haven't figured out what it means in my case.

link|improve this question

have you tried to dimension argv at all? are you passing it in as a parameter? – Jason Mar 9 '11 at 5:57
did you mean atof(argv[i]);? – Federico Culloca Mar 9 '11 at 5:58
Please consider the strtof() function over atof(). The strto*() family has the advantage of error checking, which the ato*() family lacks. – Tim Post Mar 9 '11 at 6:02
feedback

4 Answers

up vote 1 down vote accepted

I think what you want is the following:

a[j][k]=atof(argv[i]);

Note the use of () rather than [] around argv[i] - atof is a function, not an array.

link|improve this answer
omg... i'm so tired i didn't see that – Jonathan Mar 9 '11 at 6:03
feedback

Use

atof(argv[i])

instead of

atof[argv[i]]

Beware the difference between [] and ().

link|improve this answer
feedback

atof is a function, so you should use atof(argv[i]);

link|improve this answer
feedback

atof is a function - you can call functions using (), not the subscript operator [].

 a[j][k] = atof(argv[i]);

I assume this was a typo - perhaps change your font?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.