T&C Technology / Curve Fitting & Regression

← All Tools

Plot

Fitted Equation & Statistics

Run a fit to see the equation…

Generated Code

Copy this function into your firmware. No floating-point library needed for integer-only variants — use the LUT tab instead.
// Run a fit first to generate code
Pre-computed lookup table. Suitable for MCUs without FPU or when runtime computation budget is too tight for polynomial evaluation.
Run a fit first to generate the LUT.
// Run a fit first to generate LUT
LUT with linear interpolation between entries. Better accuracy than nearest- neighbour with only one extra multiply and subtract per call.
// Run a fit first to generate interpolation code