And: Difference between revisions

From APL Wiki
Jump to navigation Jump to search
m (Text replacement - "</source>" to "</syntaxhighlight>")
Line 2: Line 2:


{|class=wikitable
{|class=wikitable
!<source lang=apl inline>∧</source>!!<source lang=apl inline>0</source>!!<source lang=apl inline>1</source>
!<source lang=apl inline>∧</syntaxhighlight>!!<source lang=apl inline>0</syntaxhighlight>!!<source lang=apl inline>1</syntaxhighlight>
|-
|-
!<source lang=apl inline>0</source>
!<source lang=apl inline>0</syntaxhighlight>
|<source lang=apl inline>0</source>||<source lang=apl inline>0</source>
|<source lang=apl inline>0</syntaxhighlight>||<source lang=apl inline>0</syntaxhighlight>
|-
|-
!<source lang=apl inline>1</source>
!<source lang=apl inline>1</syntaxhighlight>
|<source lang=apl inline>0</source>||<source lang=apl inline>1</source>
|<source lang=apl inline>0</syntaxhighlight>||<source lang=apl inline>1</syntaxhighlight>
|}
|}


Line 18: Line 18:
       0 0 1 1 ∧ 0 1 0 1
       0 0 1 1 ∧ 0 1 0 1
0 0 0 1
0 0 0 1
</source>
</syntaxhighlight>


When combined with [[Reduce]], And can be used to test if every value in a Boolean vector is true.
When combined with [[Reduce]], And can be used to test if every value in a Boolean vector is true.
Line 27: Line 27:
       ∧/ 1 0 0 1 1
       ∧/ 1 0 0 1 1
0
0
</source>
</syntaxhighlight>


== See also ==
== See also ==

Revision as of 21:05, 10 September 2022

And () is a dyadic scalar boolean function which tests if both arguments are true: it returns 1 if both are 1 and 0 if one or both are 0. It represents the logical conjunction in Boolean logic. In many APLs, And is a special case of the LCM function.

<source lang=apl inline>∧</syntaxhighlight> <source lang=apl inline>0</syntaxhighlight> <source lang=apl inline>1</syntaxhighlight>
<source lang=apl inline>0</syntaxhighlight> <source lang=apl inline>0</syntaxhighlight> <source lang=apl inline>0</syntaxhighlight>
<source lang=apl inline>1</syntaxhighlight> <source lang=apl inline>0</syntaxhighlight> <source lang=apl inline>1</syntaxhighlight>

Examples

The following shows all possible combinations of inputs as a Boolean function.

<source lang=apl>

     0 0 1 1 ∧ 0 1 0 1

0 0 0 1 </syntaxhighlight>

When combined with Reduce, And can be used to test if every value in a Boolean vector is true.

<source lang=apl>

     ∧/ 1 1 1 1 1

1

     ∧/ 1 0 0 1 1

0 </syntaxhighlight>

See also

External links

Documentation

APL built-ins [edit]
Primitives (Timeline) Functions
Scalar
Monadic ConjugateNegateSignumReciprocalMagnitudeExponentialNatural LogarithmFloorCeilingFactorialNotPi TimesRollTypeImaginarySquare Root
Dyadic AddSubtractTimesDivideResiduePowerLogarithmMinimumMaximumBinomialComparison functionsBoolean functions (And, Or, Nand, Nor) ∙ GCDLCMCircularComplexRoot
Non-Scalar
Structural ShapeReshapeTallyDepthRavelEnlistTableCatenateReverseRotateTransposeRazeMixSplitEncloseNestCut (K)PairLinkPartitioned EnclosePartition
Selection FirstPickTakeDropUniqueIdentityStopSelectReplicateExpandSet functions (IntersectionUnionWithout) ∙ Bracket indexingIndexCartesian ProductSort
Selector Index generatorGradeIndex OfInterval IndexIndicesDealPrefix and suffix vectors
Computational MatchNot MatchMembershipFindNub SieveEncodeDecodeMatrix InverseMatrix DivideFormatExecuteMaterialiseRange
Operators Monadic EachCommuteConstantReplicateExpandReduceWindowed ReduceScanOuter ProductKeyI-BeamSpawnFunction axis
Dyadic BindCompositions (Compose, Reverse Compose, Beside, Withe, Atop, Over) ∙ Inner ProductDeterminantPowerAtUnderRankDepthVariantStencilCutDirect definition (operator)
Quad names Index originComparison toleranceMigration levelAtomic vector