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
verify[sublist] - verify that the first list is a sublist of the second
Calling Sequence
verify(expr1, expr2, sublist)
verify(expr1, expr2, sublist(ver))
Parameters
expr1, expr2
-
anything, assumed to be of type list
ver
verification for the list operands
Description
The verify(expr1, expr2, sublist) and verify(expr1, expr2, sublist(ver)) calling sequences return true if it can be determined that the first list expr1 forms a sublist of the second list expr2, where this relationship is satisfied operandwise, either by testing with equality or using the verification ver.
If true is returned, then for one sublist of the second list, each of the pairs of operands satisfied the relation. If false is returned, then for all sublists of the second list, at least one pair of operands did not satisfy the relation (a result of type verify(false)). Otherwise, FAIL is returned, indicating that for every sublist at least one pair of operands it could not be determined whether or not they satisfied the relation (a result of type verify(FAIL)).
This verification is not symmetric.
If either expr1 or expr2 is not of type list, then false is returned.
Examples
See Also
list, verify, verify[list], verify[subset], verify[superlist]
Download Help Document