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 > determ

determ

多項式行列の行列式

呼び出し手順

res=determ(W [,k])

パラメータ

W

実数正方多項式行列

k

整数 (Wの行列式の次数の上限

説明

実数多項式行列の行列式を返します (Wの大きさが2*2より大きい場合,FFTにより計算されます).

res=determ(W [,k])kWの行列式の実際の次数より大きな整数です.

kのデフォルト値はn*max(degree(W)) より大きな2の冪乗の最小値です.

手法 (Wの大きさが 2*2より大きな場合のみ) : フーリエ周波数に関して Wの行列式を評価し, 行列式の係数に逆FFTを適用します.

s=poly(0,'s');
w=s*rand(10,10);
determ(w)
det(coeff(w,1))*s^10

参照

  • det — 行列式
  • detr — 多項式の行列式
  • coffg — 多項式行列の逆
Report an issue
<< derivat Polynomials detr >>

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