Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.5.2 - 日本語

Change language to:
English - Français - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Scilabヘルプ >> Polynomials > derivat

derivat

有理行列の微分

呼び出し手順

pd=derivat(p)

パラメータ

p

多項式または有理行列

説明

多項式または有理関数行列のダミー変数に関する微分を計算します.

s=poly(0,'s');
derivat(1/s)  // -1/s^2;
p1 = poly([1 -2 1], 'x', 'coeff')
derivat(p1)
p2 = poly([1 -4 2], 'y', 'coeff')
derivat(p2)
p3 = poly(ones(1, 10), 'z', 'coeff')
derivat(p3)
p4 = poly([-1 1], 't', 'roots')
derivat(p4)
s = %s; p5 = s^{-1} + 2 + 3*s
derivat(p5)
Report an issue
<< denom Polynomials determ >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Apr 01 10:25:01 CEST 2015