Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpim-sw
cdo
Commits
1f6939e5
Commit
1f6939e5
authored
Mar 17, 2016
by
Uwe Schulzweida
Browse files
expr: renamed function log() to ln()
parent
36272ae8
Changes
4
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
1f6939e5
...
...
@@ -5,6 +5,7 @@
2016-03-17 Uwe Schulzweida
* expr: renamed function log() to ln()
* eca_cdd, eca_cwd: Added support to choose the amount of days
2016-03-05 Uwe Schulzweida
...
...
doc/tex/mod/Exprf
View file @
1f6939e5
...
...
@@ -65,7 +65,7 @@ Square of x
Square Root of x
@Item = exp(x)
Exponential of x
@Item = l
og
(x)
@Item = l
n
(x)
Natural logarithm of x
@Item = log10(x)
Base 10 logarithm of x
...
...
src/expr.c
View file @
1f6939e5
...
...
@@ -89,6 +89,7 @@ static func_t fun_sym_tbl[] =
{
FT_STD
,
0
,
"exp"
,
(
void
(
*
)())
exp
},
{
FT_STD
,
0
,
"erf"
,
(
void
(
*
)())
erf
},
{
FT_STD
,
0
,
"log"
,
(
void
(
*
)())
log
},
{
FT_STD
,
0
,
"ln"
,
(
void
(
*
)())
log
},
{
FT_STD
,
0
,
"log10"
,
(
void
(
*
)())
log10
},
{
FT_STD
,
0
,
"sin"
,
(
void
(
*
)())
sin
},
{
FT_STD
,
0
,
"cos"
,
(
void
(
*
)())
cos
},
...
...
src/operator_help.h
View file @
1f6939e5
...
...
@@ -1353,7 +1353,7 @@ static const char *ExprHelp[] = {
" sqr(x) "
" Square of x"
,
" sqrt(x) "
" Square Root of x"
,
" exp(x) "
" Exponential of x"
,
" l
og
(x) "
" Natural logarithm of x"
,
" l
n
(x)
"
" Natural logarithm of x"
,
" log10(x)"
" Base 10 logarithm of x"
,
" sin(x) "
" Sine of x, where x is specified in radians"
,
" cos(x) "
" Cosine of x, where x is specified in radians"
,
...
...
Write
Preview
Markdown
is supported
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