Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
0d6116d8
Commit
0d6116d8
authored
Nov 14, 2015
by
Paul Sokolovsky
Browse files
py/modmath: Make expm1() be in MICROPY_PY_MATH_SPECIAL_FUNCTIONS.
parent
0aff87b8
Changes
1
Hide whitespace changes
Inline
Side-by-side
py/modmath.c
View file @
0d6116d8
...
...
@@ -65,8 +65,10 @@ MATH_FUN_1(sqrt, sqrt)
MATH_FUN_2
(
pow
,
pow
)
/// \function exp(x)
MATH_FUN_1
(
exp
,
exp
)
#if MICROPY_PY_MATH_SPECIAL_FUNCTIONS
/// \function expm1(x)
MATH_FUN_1
(
expm1
,
expm1
)
#endif
/// \function log2(x)
MATH_FUN_1
(
log2
,
log2
)
/// \function log10(x)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment