include more low-level bindings
[clinton/guile-figl.git] / upstream-man-pages / manglsl / determinant.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook MathML Module V1.1b1//EN"
3 "http://www.oasis-open.org/docbook/xml/mathml/1.1CR1/dbmathml.dtd">
4 <refentry id="determinant">
5 <refmeta>
6 <refmetainfo>
7 <copyright>
8 <year>2011</year>
9 <holder>Khronos Group</holder>
10 </copyright>
11 </refmetainfo>
12 <refentrytitle>determinant</refentrytitle>
13 <manvolnum>3G</manvolnum>
14 </refmeta>
15 <refnamediv>
16 <refname>determinant</refname>
17 <refpurpose>calculate the determinant of a matrix</refpurpose>
18 </refnamediv>
19 <refsynopsisdiv><title>Declaration</title>
20 <funcsynopsis>
21 <funcprototype>
22 <funcdef>float <function>determinant</function></funcdef>
23 <paramdef>mat2 <parameter>m</parameter></paramdef>
24 </funcprototype>
25 <funcprototype>
26 <funcdef>float <function>determinant</function></funcdef>
27 <paramdef>mat3 <parameter>m</parameter></paramdef>
28 </funcprototype>
29 <funcprototype>
30 <funcdef>float <function>determinant</function></funcdef>
31 <paramdef>mat4 <parameter>m</parameter></paramdef>
32 </funcprototype>
33 <funcprototype>
34 <funcdef>double <function>determinant</function></funcdef>
35 <paramdef>dmat2 <parameter>m</parameter></paramdef>
36 </funcprototype>
37 <funcprototype>
38 <funcdef>double <function>determinant</function></funcdef>
39 <paramdef>dmat3 <parameter>m</parameter></paramdef>
40 </funcprototype>
41 <funcprototype>
42 <funcdef>double <function>determinant</function></funcdef>
43 <paramdef>dmat4 <parameter>m</parameter></paramdef>
44 </funcprototype>
45 </funcsynopsis>
46 </refsynopsisdiv>
47 <refsect1 id="parameters"><title>Parameters</title>
48 <variablelist>
49 <varlistentry>
50 <term><parameter>m</parameter></term>
51 <listitem>
52 <para>
53 Specifies the matrix of which to take the determinant.
54 </para>
55 </listitem>
56 </varlistentry>
57 </variablelist>
58 </refsect1>
59 <refsect1 id="description"><title>Description</title>
60 <para>
61 <function>determinant</function> returns the determinant of the matrix <parameter>m</parameter>.
62 </para>
63 </refsect1>
64 <refsect1 id="versions"><title>Version Support</title>
65 <informaltable frame="topbot">
66 #VARTABLECOLS#
67 <thead>
68 #FUNCTABLEHEADER#
69 <row>
70 <entry>determinant (float)</entry>#newin15#
71 </row>
72 <row>
73 <entry>determinant (double)</entry>#newin40#
74 </row>
75 </thead>
76 </tgroup>
77 </informaltable>
78 </refsect1>
79 <refsect1 id="seealso"><title>See Also</title>
80 <para>
81 <citerefentry><refentrytitle>transpose</refentrytitle></citerefentry>,
82 <citerefentry><refentrytitle>inverse</refentrytitle></citerefentry>
83 </para>
84 </refsect1>
85 <refsect1 id="Copyright"><title>Copyright</title>
86 <para>
87 Copyright <trademark class="copyright"></trademark> 2011 Khronos Group.
88 This material may be distributed subject to the terms and conditions set forth in
89 the Open Publication License, v 1.0, 8 June 1999.
90 <ulink url="http://opencontent.org/openpub/">http://opencontent.org/openpub/</ulink>.
91 </para>
92 </refsect1>
93 </refentry>