![]() |
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 |
16 LES FRACTIONS RATIONNELLES 16 RATIONALS |
16.3 Fonctions / Functions |
Version 2.1.2 du 4 Février 2005 / Version 2.1.2, February 4th 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 16.4 / Next section 16.4 |
//
PROGRAMME SPAS160301 denom numer
p1 = poly ([1, 2, 3], "x","coeff") ; p2 = poly ([1, 3, 5], "x","coeff") ; r = p1/p2; q1 = numer (r), q2 = denom (r), |
//
PROGRAMME SPAS160302 simp_mode
simp_mode (), |
//
PROGRAMME SPAS160303 simp_mode
simp_mode(%T); b1 = simp_mode (), p1 = poly ([1, 2, 3], "x","roots") ; p2 = poly ([1, 3, 5], "x","roots") ; r1 = p1/p2, simp_mode(%F); b2 = simp_mode (), r2= p1/p2, |
//
PROGRAMME SPAS160304 simp
simp_mode(%F); b1 = simp_mode (), p1 = poly ([1, 2, 3], "x","roots") ; p2 = poly ([1, 3, 5], "x","roots") ; r1 = p1/p2; r2 = simp(r1), simp_mode(%T); b2 = simp_mode (), r3 = simp(r1), |
//
PROGRAMME SPAS160305 invr
p1 = poly ([1, 2, 3], "x","coefs") ; p2 = poly ([1, 3, 5], "x","coefs") ; r1 = p1/p2; r2 = invr (r1), |
//
PROGRAMME SPAS160306 horner
p1 = poly ([1, 2, 3], "x","coefs") ; p2 = poly ([1, 3, 5], "x","coefs") ; r = p1/p2; v = horner (r,2), |
Retour à la Table générale / Return to the General table |
Index général / General index |
Passage à la section suivante 16.4 / Next section 16.4 |