generate functionThu, 06 Apr 2023
可以运行在8位单片机上的一阶滤波代码,效率要高
void first_order_IIR(float x, float *v, float *y, float a0, float a1, float b1) { static float w = 0.0; w = x - a1 * *v + b1 * w; *y = a0 * w; *v = w; }
可以运行在8位单片机上的一阶滤波代码,效率要高
void first_order_IIR(float x, float *v, float *y, float a0, float a1, float b1) { static float w = 0.0; w = x - a1 * *v + b1 * w; *y = a0 * w; *v = w; }
Generate
More than just a code generator. A tool that helps you with a wide range of tasks. All in one place.
Function from Description
Text Description to SQL Command
Translate Languages
Generate HTML from Description
Code to Explanation
Fix invalid Code
Get Test for Code
Class from Description
Regex from Description
Regex to Explanation
Git Command from Description
Linux Command
Function from Docstring
Add typing to code
Get Language from Code
Time complexity
CSS from Description
Meta Tags from Description