![]() |
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 |
19 OPREATIONS GENERALES SUR LES
MATRIVES 19 GENERAL OPRATIONS ON MATRICES |
19.1 Extrema / Extrema |
Version 2.1.2 du 28 Février 2005 / Version 2.1.2, February 28th 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 19.2 / Next section 19.2 |
a |
|
b |
max (Matrice, Matrix) maxi (Matrice, Matrix) min (Matrice, Matrix) mini (Matrice, Matrix) |
c |
r (max, Matrice, Matrix) r (min, Matrice, Matrix) |
d |
c (max, Matrice, Matrix) c (min, Matrice, Matrix) |
//
PROGRAMME SPAS190101
m = [1, 2, 3; 4, 5, 6; 7, 8, 9]; f1 = max (m), f2 = min (m), |
//
PROGRAMME SPAS190102
m = [1, 2, 3; 4, 5, 6; 7, 8, 9]; [f1, r1] = max (m), [f2, r2] = min (m), |
//
PROGRAMME SPAS190103
m = [1, 2, 3; 4, 5, 6; 7, 8, 9]; f1 = max (m,"r"), f2 = min (m,"r"), |
//
PROGRAMME SPAS190104
m = [1, 2, 3; 4, 5, 6; 7, 8, 9]; f1 = max (m,"c"), f2 = min (m,"c"), |
Retour à la Table générale / Return to the General table |
Index général / General index |
Passage à la section suivante 19.2 / Next section 19.2 |