1 <?xml version="1.0" encoding="UTF-8"?>
3 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
4 * Copyright (C) 2006-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:mml="http://www.w3.org/1998/Math/MathML" xmlns:db="http://docbook.org/ns/docbook" xmlns:scilab="http://www.scilab.org" xml:lang="ja" xml:id="derivat">
18 <refname>derivat</refname>
19 <refpurpose>有理行列の微分</refpurpose>
23 <synopsis>pd=derivat(p)</synopsis>
31 <para>多項式または有理行列</para>
39 多項式または有理関数行列のダミー変数に関する微分を計算します.
44 <programlisting role="example"><![CDATA[
46 derivat(1/s) // -1/s^2;
48 <programlisting role="example"><![CDATA[
49 p1 = poly([1 -2 1], 'x', 'coeff')
52 <programlisting role="example"><![CDATA[
53 p2 = poly([1 -4 2], 'y', 'coeff')
56 <programlisting role="example"><![CDATA[
57 p3 = poly(ones(1, 10), 'z', 'coeff')
60 <programlisting role="example"><![CDATA[
61 p4 = poly([-1 1], 't', 'roots')
64 <programlisting role="example"><![CDATA[
65 s = %s; p5 = s^{-1} + 2 + 3*s