I've started using the NXT brick with NXC language just a couple days ago, but I worked with the old NQC robot a bit too.
This time I'm working on a project with a friend of mine for school, and we're thinking big.
We're planning to make a robot who can detect 'trash', then pick it up and bring it back to its starting place (next to the trash can for example).
However, to be able to make the robot calculate it's way back (after moving about for a while), we need to use the cosine rule.
So here my question/problem is: how to use the cos() function?
Currently our calculation is like this:
dist_start = sqrt(a^2+b^2-2*a*b*cos(RADIANS_PER_DEGREE*turn));
all the variables (dist_start, a, b and turn) have been defined and used in calculations before.
When we try to compile the program it errors out:
line 19: Error: Undefined Identifier cos
line 19: Error: Too many arguments
line 19: Error: ")" expected
line 19: Error: ';' expected
When we cut out the cos() from the calculations, no errors are returned.
Any help on how to use the cos() function?
If you need any more information or simply need the whole file, I can send it over or upload it, just ask

All help is appreciated!
Greetings,
Rien