This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CCS/TMS320F28335: ERROR square root function and raised to power function

Part Number: TMS320F28335

Tool/software: Code Composer Studio

Hi

I am facing an error when I build my program code. I want to perform the following mathematical computation:

Stator Flux = square root { Direct component of flux squared + Quadrature component of flux squared }

How to do it? I used sqrt() function and pow() function. Please help me out.

D_act=sqrt(pow(D_ds,2),pow(D_qs,2)); // Actual stator flux

Geethanjali