Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: DMSupport DMemWin
Fork of Motor_Embedded_3rd_emwin by
Diff: embedded/complex.cpp
- Revision:
- 0:08606a13a816
diff -r 000000000000 -r 08606a13a816 embedded/complex.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/embedded/complex.cpp Thu Jun 02 05:04:57 2016 +0000 @@ -0,0 +1,7 @@ +// Include header file +#include "complex.h" + +// Imaginary unity constants +const complex complex::i(0., 1.); +const complex complex::j(0., 1.); +
