10-27-2011 05:21 PM
Im trying to compute a simple function in a formula node, I recieve the following errors:
Error on line 1 is marked by a '#' character: "X3=sin**#2(2*T);"
Error on line 1 is marked by a '#' character: "X5=(cos**#(2)(T);"
10-27-2011 05:29 PM
Try:
X3=(sin(2*T))**2;
X5=(cos(T))**2;
10-27-2011 05:42 PM
That appears to have worked, thanks
10-28-2011 10:48 AM
10-28-2011 10:54 AM
Yes, I did.