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/hfarray - check for an array of hardware floats
Calling Sequence
type(A, hfarray)
type(A, 'hfarray'(x_i))
type(A, 'hfarray'(x_1, ..., x_n))
Parameters
A
-
any expression
Description
The call type(A, hfarray) checks to see if A is an array of hardware floats (an hfarray). It will return true if A is an hfarray, and false otherwise. See the information under hfarray for a description of the hfarray data structure and how to create hfarrays.
The optional argument(s) must be either an integer, or ranges of integers. They are used to specify the desired dimensions of an hfarray.
If x_i is an integer it specifies the number of dimensions of the hfarray A. For example, 'hfarray'(2) would specify a 2-D hfarray.
If are ranges, they specify the hfarray bounds (and implicitly the dimension) of the hfarray A. For example, 'hfarray'(1..2,1..posint) would specify a 2-D hfarray with exactly two rows and one or more columns.
It is necessary to surround the word hfarray with quotes when using this function in the second form. This prevents invocation of the hfarray function, which is used to create arrays.
Examples
See Also
hfarray, type, type/Array, type/array
Download Help Document