Bell 32V development
authorTom London <tbl@research.uucp>
Sat, 9 Dec 1978 03:49:21 +0000 (22:49 -0500)
committerTom London <tbl@research.uucp>
Sat, 9 Dec 1978 03:49:21 +0000 (22:49 -0500)
Work on file usr/man/man3/hypot.3m

Co-Authored-By: John Reiser <jfr@research.uucp>
Synthesized-from: 32v

usr/man/man3/hypot.3m [new file with mode: 0644]

diff --git a/usr/man/man3/hypot.3m b/usr/man/man3/hypot.3m
new file mode 100644 (file)
index 0000000..283279a
--- /dev/null
@@ -0,0 +1,26 @@
+.TH HYPOT 3M 
+.SH NAME
+hypot, cabs \- euclidean distance
+.SH SYNOPSIS
+.B #include <math.h>
+.PP
+.B double hypot(x, y)
+.br
+.B double x, y;
+.PP
+.B double cabs(z)
+.br
+.B struct { double x, y;} z;
+.SH DESCRIPTION
+.I Hypot
+and
+.I cabs
+return
+.PP
+.IP "" 15n
+sqrt(x*x + y*y),
+.LP
+taking precautions against unwarranted overflows.
+.SH SEE ALSO
+exp(3) for
+.I sqrt