Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
rtable_elems - return the elements of an rtable
rtable_num_elems - return the number of elements in an rtable
Calling Sequence
rtable_elems(A)
rtable_num_elems(A, opt)
Parameters
A
-
rtable object
opt
(optional) name; element status
Description
The rtable_elems(A) function, where A is an Array, Matrix, or Vector, returns a set of equations of the form (indices)=value specifying the values of the elements in rtable A.
Only the elements that explicitly need to be specified, taking into account storage, are returned.
For Arrays, this function is equivalent to op(3, A). For Matrices and Vectors, this is equivalent to op(2, A).
The rtable_num_elems(A) function, where A is an Array, Matrix, or Vector, returns the number of elements actually stored in rtable A.
This rtable_num_elems(A, opt) function performs in the same manner, except that one of the following options may be specified.
result
All
size of the rtable as specified by its bounds
Stored
number of entries actually stored (default)
NonZero
number of nonzero elements of the rtable
NonZeroStored
number of stored nonzero elements of the rtable
Bytes
number of bytes of storage allocated for data in the rtable
Allocated
number of elements for which storage has been allocated
Thread Safety
The rtable_num_elems command is thread-safe as of Maple 15.
For more information on thread safety, see index/threadsafe.
Examples
See Also
Array, Matrix, op, rtable, Vector
Download Help Document