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
comparray - compare the entries of two arrays or lists
Calling Sequence
comparray(A, B,...)
Parameters
A
-
Array or list or list of lists
B
Description
For brevity, it is assumed in what follows that the 1st two arguments are arrays. Either or both of them may be lists or lists of lists.
If the last argument is dontprint then the lprinting of intermediate test results is suppressed. Otherwise, the results are lprinted in an array-like manner, giving a visual representation of the entries which agree and disagree.
If only 2 arguments are given, or if 3 arguments are given and the 3rd one is dontprint, then a straight boolean comparison of the entries of the input arrays is done.
Otherwise, testfloat is invoked to do the comparison of the entries in the input arrays. All arguments to comparray after the first two (but excluding dontprint, if present) are passed to testfloat as the 3rd, 4th, etc parameters to that routine. Note that this implies that the same error bound will be applied to all entries in the arrays, and that the input array B is considered to contain the ``correct'' values. See testfloat for more details.
In either case, if the dimensions of the input arrays do not match, no further processing is done.
If any of the entry comparisons fail, comparray returns false. Otherwise it returns true.
Examples
[true, true, false] [false, true, true] [true, true, true]
[[false, 3., `ulps `], true, true]
See Also
testfloat, verify[array], verify[list], verify[listlist]
Download Help Document