Re: Math question
Re: Math question
- Subject: Re: Math question
- From: Drew McCormack <email@hidden>
- Date: Sun, 2 Sep 2001 06:11:31 -0700
>
Oops! I had a FORTRAN flashback for a moment there..
Actually, in FORTRAN it would be
fooSquared = foo**2
Maybe you should give up while you're ahead ;-)
I think the foo^2 syntax appears in Mathematica, and perhaps pascal,
though I'm not sure about the latter.
>
>
Make that
>
>
fooSquared = pow(foo, 2);
>
>
-jcr