Any idea why all([]) is true while any([]) is false
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
>> all([])
ans =
1
>> any([])
ans =
0
2 commentaires
Réponse acceptée
Plus de réponses (1)
the cyclist
le 29 Juil 2012
I can't say I know definitively, but I expect that one reason is for consistency when taking the union of sets with the empty set. For example, one would want
all(union(true,[]))
to be true, and also
any(union(false,[]))
to be false. The definitions in your question make sense in that context.
Voir également
Catégories
En savoir plus sur Numeric Types dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!