Arduino library for Complex mathematical operations.
This library defines the complex data type and all the common mathematical functions for it.
These functions include basic = "+ - * /" and also power and goniometric functions.
The library implements the Printable interface so one can directly print the complex values in any stream e.g. Serial.
#include "Complex.h"See Complex.h for a full list of functions implemented.
The library uses float for the real and imaginary part so precision is limited. Reasons are memory and performance, see also Future section below.
The library implements the constant one as this value is often used in the code.
The library has a big footprint so it fills up the memory of an UNO quite fast, especially if all functionality is used.
Issue found in version 0.1.9 - https://github.com/RobTillaart/Arduino/issues/90 Class does not compile for DUE and TEENSY Also Raspberry Pico - #6
Apparently the name "Complex" is already in use (reserved) by some non-AVR compilers so it won't include the Complex.h file. Problem seen on Due and Teensy3.5
- first question, do you need this complex lib if there already exists one?
- Make a copy of the Complex Library and rename the folder to CComplex
- Rename Complex.h to CComplex.h
- Rename Complex.cpp to CComplex.cpp
- change one line in CComplex.cpp to include CComplex.h
- note your sketches need to include CComplex.h too.
- improve documentation
- tables with groups of functions?
- create a (8 byte) double based variant for high precision e.g. Complex8()
- Note that some platforms map double to float
- others support float in hardware etc.
- so expect a big difference in both memory and performance.
- create the constant i ??
- => expect conflicts with int i...
If you appreciate my libraries, you can support the development and maintenance. Improve the quality of the libraries by providing issues and Pull Requests, or donate through PayPal or GitHub sponsors.
Thank you,