![]() |
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.4 Dimensions d'une matrice / Dimensions of a matrix |
Version 2.1.1 du 4 Février 2005 / Version 2.1.1, 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 17.5 / Next section 17.5 |
//
PROGRAMME SPAS170401
m = [1, 2, 3; 4, 5, 6]; nd = ndims (m), |
//
PROGRAMME SPAS170402
m = [1, 2, 3; 4, 5, 6]; [nl, nc] = size (m), |
//
PROGRAMME SPAS170403
m = [1, 2, 3; 4, 5, 6]; nl1 = size (m,"r"), nl2 = size (m,1), nc1 = size (m,"c"), nc2 = size (m,2), |
//
PROGRAMME SPAS170404
h = hypermat ([2, 3, 4]); n1 = size (h,1), n2 = size (h,2), n3 = size (h,3), |
//
PROGRAMME SPAS170405
m = [1, 2, 3; 4, 5, 6]; ne = size (m,"*"), |
//
PROGRAMME SPAS170406
h = hypermat ([2, 3, 4]); ne = size (h,"*"), |
Retour à la Table générale / Return to the General table |
Index général / General index |
Passage à la section suivante 17.5 / Next section 17.5 |