Array - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


verify/Array

verify a relation between two Arrays

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

verify(expr1, expr2, Array)

verify(expr1, expr2, 'Array'(ver))

Parameters

expr1, expr2

-

anything, assumed to be of type Array

ver

-

verification for the Array elements

Description

• 

The verify(expr1, expr2, Array) and verify(expr1, expr2, 'Array'(ver)) calling sequences return true if it can be determined that the two Arrays satisfy a relation elementwise, either by testing with equality or using the verification ver.

• 

If true is returned, then each of the pairs of elements satisfied the relation. If false is returned, then at least one pair of elements did not satisfy the relation (a result of type verify(false)). Otherwise, FAIL is returned, indicating that for at least one pair of elements it could not be determined whether or not they satisfied the relation (a result of type verify(FAIL)).

• 

The verification Array is symmetric and a verification 'Array'(ver) is symmetric if and only if the verification ver is symmetric.

• 

Since Array is a Maple function, it must be enclosed in single quotes to prevent evaluation.

• 

If either expr1 or expr2 is not of type Array, then false is returned.

• 

The special verifications %NULL, seq, and &, can be used to verify an expression sequence in an Array. See verify/exprseq.

Examples

aArray1..3,1,2,x12

a12x12

(1)

bArray1..3,1,2,x12

b12x12

(2)

cArray1..3,1,2,x22x+1

c12x22x+1

(3)

evalba=b

false

(4)

verifya,b,Array

true

(5)

verifya,c,Array

false

(6)

verifya,c,Arrayexpand

true

(7)

Compatibility

• 

The verify/Array command was updated in Maple 2015.

See Also

Array

verify