SeanIazdi:
Hey, i'm looking for some arduino project that apply algebra linear in the engineering field (Automation and Control mainly ).I've searched here in the forum, but did not found something that I can use.
Thanks.
I suspect the reason you did not find anything in our forums is that such mathematical manipulations are ill-suited for most generic uC's. Even in PC's the microprocessor company generally includes an FPU for better accuracy in floating point calculations (as well as faster than software algorithms) and even with a PC, there are specialized software packages to do such math.
The above being said, GCC which underlies the Arduino IDE and provides the compiling/linking functionality does support some Scientific Libraries and some may require resources supportable by the Arduino line - especially the 32-bit line with more SRAM.
https://www.gnu.org/software/gsl/
But ... no promises!
Ray