1 <?xml version="1.0" encoding="UTF-8"?>
3 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
4 * Copyright (C) 2008 - INRIA
6 * Copyright (C) 2012 - 2016 - Scilab Enterprises
8 * This file is hereby licensed under the terms of the GNU GPL v2.0,
9 * pursuant to article 5.3.4 of the CeCILL v.2.1.
10 * This file was originally licensed under the terms of the CeCILL v2.1,
11 * and continues to be available under such terms.
12 * For more information, see the COPYING file which you should have received
13 * along with this program.
16 <refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svg="http://www.w3.org/2000/svg" xmlns:ns3="http://www.w3.org/1999/xhtml" xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:db="http://docbook.org/ns/docbook" xmlns:scilab="http://www.scilab.org" xml:id="det" xml:lang="pt">
18 <refname>det</refname>
19 <refpurpose>determinante</refpurpose>
22 <title>Seqüência de Chamamento</title>
28 <title>Parâmetros</title>
33 <para>matriz quadrada de reais ou complexos, matriz de polinômios ou
34 de razões de polinômios
41 <para>número real ou complexo, a mantissa de base 10 do
49 <para>inteiro, o expoente de base 10 do determinante</para>
55 <title>Descrição</title>
57 <literal>det(X)</literal> ( <literal>m*10^e</literal> é o
58 determinante da matriz quadrada <literal>X)</literal>.
61 Para uma matriz de polinômios, <literal>det(X)</literal> é
62 equivalente a <literal>determ(X)</literal>.
65 Para matrizes de razões de polinômios <literal>det(X)</literal> é
66 equivalente a <literal>detr(X)</literal>.
70 <title>Referências</title>
71 <para>As computações da função det são baseadas nas rotinas do LAPACK
72 DGETRF para matrizes de reais e ZGETRF para o caso de matrizes de
77 <title>Exemplos</title>
78 <programlisting role="example"><![CDATA[
81 w=ssrand(2,2,4);roots(det(systmat(w))),trzeros(w) //zeros do sistema linear
87 <title> Ver Também</title>
88 <simplelist type="inline">
90 <link linkend="detr">detr</link>
93 <link linkend="determ">determ</link>