Commit 12afe7bc authored by Bruce Momjian's avatar Bruce Momjian

Document atan2() as y/x, rather than x/y, to conform to general usage.

Andrew Maclean
parent 9b2afa90
<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.394 2007/09/14 14:54:25 momjian Exp $ --> <!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.395 2007/09/14 15:53:48 momjian Exp $ -->
<chapter id="functions"> <chapter id="functions">
<title>Functions and Operators</title> <title>Functions and Operators</title>
...@@ -948,10 +948,10 @@ ...@@ -948,10 +948,10 @@
</row> </row>
<row> <row>
<entry><literal><function>atan2</function>(<replaceable>x</replaceable>, <entry><literal><function>atan2</function>(<replaceable>y</replaceable>,
<replaceable>y</replaceable>)</literal></entry> <replaceable>x</replaceable>)</literal></entry>
<entry>inverse tangent of <entry>inverse tangent of
<literal><replaceable>x</replaceable>/<replaceable>y</replaceable></literal></entry> <literal><replaceable>y</replaceable>/<replaceable>x</replaceable></literal></entry>
</row> </row>
<row> <row>
......
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