![]() |
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.2 Opérateurs / Operators |
Version 2.1.1 du 27 janvier 2005 / Version 2.1.1, 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 16.3 / Next section 16.3 |
//
PROGRAMME SPAS160201
p1 = poly ([1, 2, 3], "x","coeff") ; p2 = poly ([1, 3, 5], "x","coeff") ; r1 = p1/p2; r2 = -r1, |
//
PROGRAMME SPAS160202
p1 = poly ([1, 2, 3], "x","coeff") ; p2 = poly ([1, 3, 5], "x","coeff") ; r1 = p1/p2; r2 = p2/p1; r = r1+r2, |
//
PROGRAMME SPAS160203
p1 = poly ([1, 2, 3], "x","coeff") ; p2 = poly ([1, 3, 5], "x","coeff") ; r1 = p1/p2; r2 = p2/p1; r = r1-r2, |
//
PROGRAMME SPAS160204
p1 = poly ([1, 2, 3], "x","coeff") ; p2 = poly ([1, 3, 5], "x","coeff") ; r1 = p1/p2; r2 = p1+p2/p1; r = r1*r2, |
//
PROGRAMME SPAS160205
p1 = poly ([1, 2, 3], "x","coeff") ; p2 = poly ([1, 3, 5], "x","coeff") ; r1 = p2+p1/p2; r2 = p2/p1; r = r1/r2, |
Retour à la Table générale / Return to the General table |
Index général / General index |
Passage à la section suivante 16.3 / Next section 16.3 |