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
type/array - check for an array
Calling Sequence
type(A, array)
type(A, 'array'(t))
type(A, 'array'(n))
type(A, 'array'(x_1, x_2, ...))
Parameters
A
-
any expression
x_i
(optional) integer, range, type, or name
Description
The call type(A, array) checks to see if A is an array. It will return true if A is an array, and false otherwise. It does not check the entries of A. See the information under array for a description of the array data structure and how to create arrays.
The optional argument(s) must be either integers, ranges, names or a type. They are used to specify the kind of array and the type of the entries of the array.
If x_i is an integer it specifies the number of dimensions of the array A. For example, 'array'(2) would specify a 2-D array.
If are ranges, they specify the array bounds (and implicitly the dimension) of the array A. For example, 'array'(1..2,1..posint) would specify a 2-D array with exactly two rows and one or more columns.
If are names of indexing functions, they specify the kind of array. For example, 'array'(symmetric) specifies a symmetric array, that is, an array with the symmetric indexing function.
If x is a type, it specifies the type of the entries of the array. For example, 'array'(numeric) specifies an array with numerical entries. See the information under type for a description of available types in Maple. Note, if any entries of A are undefined, then their type will not be checked. Thus if A is an array which has no defined elements, then type(A, 'array'(x)) will always return true.
It is necessary to surround the word array with quotes (') when using this function in the second form. This prevents invocation of the array function, which is used to create arrays.
Note: The array command has been superseded by Array.
Examples
See Also
array(deprecated), type, type/Array, type/matrix, type/table
Download Help Document