For My Drive I am trying to get a cubic function going but unfortunately it is not working.
task usercontrol()
{
while (true)
{
motor[FrontRightWheel] = 24*(vexRT[Ch2])^(1/3);
motor[BackRightWheel] = 24*(vexRT[Ch2])^(1/3);
motor[FrontLeftWheel] = 24*(vexRT[Ch3])^(1/3);
motor[BackLeftWheel] = 24*(vexRT[Ch3])^(1/3);
}
}
For future reference this question was answered by the community here.
https://vexforum.com/t/cube-root-in-robotc/33794/1