Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
type/list - check for a list
type/set - check for a set
Calling Sequence
type(expr, list)
type(expr, set)
type(expr, list(K))
type(expr, set(K))
Parameters
expr
-
any expression
K
type name
Description
In the first two calling sequences, the type command checks if expr is a valid Maple list or set. It returns true if expr is a list or set and false otherwise.
See the list and set help pages for a description of the list and set datatypes.
In the third and fourth calling sequences, where K is a specified type name, the type command checks whether expr is a list or set whose entries are of type K. That is, type(expr, list(K)) returns true if type(expr, list) is true and type(x, K) is true for each entry x of expr. Sets are checked in a similar manner.
See the type help page for a description of valid types in Maple.
Examples
See Also
list, set, type, type/listlist, type/sequential
Download Help Document