Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.5.1 - Français

Change language to:
English - 日本語 - 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

Aide de Scilab >> Polynômes > inv_coeff

inv_coeff

construction d'une matrice polynomiale à partir des coefficients

Séquence d'appel

[P]=inv_coeff(C,[,d,[name])

Paramètres

C

"grosse" matrice des coefficients

d

degré de la matrice polynomiale (paramètre optionnel valant par défaut d=-1+size(C,'c')/size(C,'r'))

name

chaîne de caractères (indéterminée du polynôme, 'x' par défaut).

Description

P=inv_coeff(Mp,k), quand k est compatible avec la taille de Mp renvoie une matrice polynomiale de degré k. C=[C0,C1,...,Ck] et P= C0 + C1*x +... +Ck*x^k.

Exemples

A=int(10*rand(2,6))
// construction d'une matrice polynomiale de degré 1
P=inv_coeff(A,1)
norm(coeff(P)-A)
// utilisation de la valeur par défaut du degré
P1=inv_coeff(A)
norm(coeff(P1)-A)

Voir aussi

  • poly — définition d'un polynôme
  • degree — degrés d'une matrice de polynômes
  • coeff — coefficients d'une matrice de polynômes
Report an issue
<< htrianr Polynômes invr >>

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:
Thu Oct 02 13:54:32 CEST 2014