diff options
author | stanley lieber <stanley.lieber@gmail.com> | 2015-11-27 16:49:19 -0500 |
---|---|---|
committer | stanley lieber <stanley.lieber@gmail.com> | 2015-11-27 16:49:19 -0500 |
commit | 8043614f797a269cfc9772998a3a1d46c139a1b7 (patch) | |
tree | 3e6711b16525779135c1942951255aec469e3f55 | |
parent | 254031cf7020f1b185c6d0af89c653a271e0ed01 (diff) | |
download | plan9front-8043614f797a269cfc9772998a3a1d46c139a1b7.tar.xz |
fplot(1): add BUGS section
-rw-r--r-- | sys/man/1/fplot | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/man/1/fplot b/sys/man/1/fplot index 75329a989..17c6184e1 100644 --- a/sys/man/1/fplot +++ b/sys/man/1/fplot @@ -1,4 +1,4 @@ -.TH FPLOT 1 +b.TH FPLOT 1 .SH NAME fplot \- plot elementary function .SH SYNOPSYS @@ -54,6 +54,10 @@ fplot -c -s 400x400 'sqrt(x*x)' 'x^3' | page either exits with .LR "syntax error" or an empty status. +.SH BUGS +Parentheses after unary operators are not special, e.g. sin(x)/2 is parsed as sin x/2 = sin(x/2) and not (sin x)/2. +.PP +There is no unary plus or minus. .SH HISTORY .I Fplot first appeared in 9front (July, 2011). |