![]() |
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 |
17 VECTEURS, MATRICES ET HYPERMATRICES 17 VECTORS, MATRICES AND HYPERMATRICES |
17.3 Sous-matrices / Sub-matrices |
Version 2.1.1 du 29 janvier 2005 / Version 2.1.1, January 29th 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 17.4 / Next section 17.4 |
a |
: (Matrice, Matrix) |
b |
: (Intervalle, Matrice,
Interval, Matrix) Sous-matrice Sub-matrix |
//
PROGRAMME SPAS170301
m = [1, 2, 3; 4, 5, 6]; m (:,2), |
//
PROGRAMME SPAS170302
m = [1, 2, 3; 4, 5, 6; 7, 8, 9]; m (1:2,2:3), |
//
PROGRAMME SPAS170303
m = [1, 2, 3; 4, 5, 6; 7, 8, 9]; ll = 1:2; cc = 2:3; m (lin,col), |
Retour à la Table générale / Return to the General table |
Index général / General index |
Passage à la section suivante 17.4 / Next section 17.4 |