2024-01-22 02:32 PM
I wanted implement this formula y = a*x^b on the STM32F405 processor. But can I do the power multiplication on the STM32F405. Any help on this matter. Thank you
2024-01-22 02:36 PM
Sure you can:
y = a * powf(x, b);
2024-01-22 02:38 PM
In C
#include <math.h>
float x,y,a,b;
y = a * pow(x,b);