Hello,
I was wondering if anyone could let me know how I can have allegro common lisp recognize the mathematical symbol 'e' as the mathematical e and not a letter or something
thank you
CL-USER> (defconstant e (exp 1))
E
CL-USER> e
2.7182817(defun sigmoid (x)
(- 0.5 (/ 1 (- 1 (exp x)))))
(defun asigmoid (x)
(/ 1 (- 1 (exp x))))Users browsing this forum: No registered users and 2 guests