This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

about C lib.

How can I use Keil to compute exponential function?

is use #include <stdlib.h>?

thank you sir.

Parents
  • Quite likely, you'll have to put together your own structures and functions to deal with complex numbers.

    Most applications for '51 MCUs don't involve heavy maths stuff because the processor neither has the RAM, ROM or CPU power to handle general purpose complex number libraries and the like efficiently.

    You will have to determine _what exactly_ you need to do that involves complex numbers, and then implement it. Alternatively, considering if and how to avoid the use of complex numbers could also be an option.

Reply
  • Quite likely, you'll have to put together your own structures and functions to deal with complex numbers.

    Most applications for '51 MCUs don't involve heavy maths stuff because the processor neither has the RAM, ROM or CPU power to handle general purpose complex number libraries and the like efficiently.

    You will have to determine _what exactly_ you need to do that involves complex numbers, and then implement it. Alternatively, considering if and how to avoid the use of complex numbers could also be an option.

Children