Commit 411a8bd7 authored by Guido van Rossum's avatar Guido van Rossum

add hypot()

parent 2ce15a59
...@@ -19,6 +19,7 @@ They are: ...@@ -19,6 +19,7 @@ They are:
\funcline{floor}{x} \funcline{floor}{x}
\funcline{fmod}{x, y} \funcline{fmod}{x, y}
\funcline{frexp}{x} \funcline{frexp}{x}
\funcline{hypot}{x, y}
\funcline{ldexp}{x, y} \funcline{ldexp}{x, y}
\funcline{log}{x} \funcline{log}{x}
\funcline{log10}{x} \funcline{log10}{x}
......
...@@ -19,6 +19,7 @@ They are: ...@@ -19,6 +19,7 @@ They are:
\funcline{floor}{x} \funcline{floor}{x}
\funcline{fmod}{x, y} \funcline{fmod}{x, y}
\funcline{frexp}{x} \funcline{frexp}{x}
\funcline{hypot}{x, y}
\funcline{ldexp}{x, y} \funcline{ldexp}{x, y}
\funcline{log}{x} \funcline{log}{x}
\funcline{log10}{x} \funcline{log10}{x}
......
...@@ -121,6 +121,7 @@ FUNC1(math_exp, exp) ...@@ -121,6 +121,7 @@ FUNC1(math_exp, exp)
FUNC1(math_fabs, fabs) FUNC1(math_fabs, fabs)
FUNC1(math_floor, floor) FUNC1(math_floor, floor)
FUNC2(math_fmod, fmod) FUNC2(math_fmod, fmod)
FUNC2(math_hypot, hypot)
FUNC1(math_log, log) FUNC1(math_log, log)
FUNC1(math_log10, log10) FUNC1(math_log10, log10)
#ifdef MPW_3_1 /* This hack is needed for MPW 3.1 but not for 3.2 ... */ #ifdef MPW_3_1 /* This hack is needed for MPW 3.1 but not for 3.2 ... */
...@@ -214,6 +215,7 @@ static struct methodlist math_methods[] = { ...@@ -214,6 +215,7 @@ static struct methodlist math_methods[] = {
{"floor", math_floor}, {"floor", math_floor},
{"fmod", math_fmod}, {"fmod", math_fmod},
{"frexp", math_frexp}, {"frexp", math_frexp},
{"hypot", math_hypot},
{"ldexp", math_ldexp}, {"ldexp", math_ldexp},
{"log", math_log}, {"log", math_log},
{"log10", math_log10}, {"log10", math_log10},
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment