![]() |
SCILAB 3.0 PAS A PAS SCILAB 3.0 STEP-TO-STEP Jacques-Deric Rouault Laboratoire de Neurobiologie de l'Apprentissage, de la Mémoire et de la Communication. CNRS UMR 8620, Bat. 446, Université Paris-Sud, F91400 Orsay |
![]() ORSCILAB |
15 LES POLYNOMES 15 POLYNOMS |
15.1 Définition / Definition |
Version 2.1.3 du 27 janvier 2005 / Version 2.1.3, January 27th 2005 |
Biomodèles/Biomodels N°1 pp 0x-0y Décembre 2004 December 2004 |
Retour à la Table générale / Return to the General table |
Index général / General index |
Passage à la section suivante 15.2 / Next section 15.2 |
//
PROGRAMME SPAS150101 polynome
p = poly ([1, 2, 3], "x","coeff") , |
//
PROGRAMME SPAS150102 polynome
v = [5, 4, 3, 2, 1]; p = poly (v, "y","coeff") , |
//
PROGRAMME SPAS150103 polynome
p = poly ([1, 2, 3], "x","roots") , |
//
PROGRAMME SPAS150104 polynome
x = poly (0, "x") ; p=3*x^2+4*x+1, |
//
PROGRAMME SPAS150105 polynome
m = [1, 2; 3,4]; p = poly (m, "x") , |
//
PROGRAMME SPAS150105 polynome
p = poly ([1, 2, 3], "x","coeff"); type (p), typeof (p), |
Retour à la Table générale / Return to the General table |
Index général / General index |
Passage à la section suivante 15.2 / Next section 15.2 |