What is the difference between "any" and "all" function?

조회 수: 362 (최근 30일)
Md Jonayet
Md Jonayet 2023년 2월 21일
댓글: James Tursa 2023년 6월 12일
I am trying to learn the difference between any and all function but it seems like they both are equal and use for finding any non zero value. If anyone could explain with the difference between these two function, I will apprecite it a lot.
  댓글 수: 11
James Tursa
James Tursa 2023년 6월 7일
x = nan(100000000,1); % full x
nnz(x)
ans = 100000000
timeit(@()nnz(x))
ans = 0.0449
Note that in the full x case, there is no shortcut and you need to take the time to examine each element. In the sparse x case, the number of nonzero elements has already been calculated by MATLAB when building the sparse martix and is sitting at the end of the internal column indexing array Jc, so all you have to do is grab that element and return it. Very fast. But it relies on the definition of nonzero including NaN.
James Tursa
James Tursa 2023년 6월 12일
Response from TMW:
There were 2 main concerns you had:
  1. Consistent treatment of NaN values for the “nnz”, “all”, and “any” functions
  2. Consistent treatment of NaN values between the sparse and regular matrices when using the “any” function
The second issue will be fixed in a future release to ensure consistency in the “any” function.
We will consider addressing the first issue but will first wait to see if other users have the same concern.

댓글을 달려면 로그인하십시오.

답변 (5개)

Chris
Chris 2023년 2월 21일
편집: Chris 2023년 2월 21일
B = [0 0 0];
[any(B), all(B)]
ans = 1×2 logical array
0 0
C = [1 1 1];
[any(C), all(C)]
ans = 1×2 logical array
1 1
A = [0 1 0];
[any(A), all(A)]
ans = 1×2 logical array
1 0
If any elements are true, any is true.
all is only true if all elements are true. If any are false, all returns false.

Image Analyst
Image Analyst 2023년 2월 21일
any returns true if any of the elements are non-zero, while all returns true only if all of them are non-zero. For all to return true, there must not be a single 0 in the array. If there is even a single zero, then all() will return false.
v = [1 0 3 5]
v = 1×4
1 0 3 5
any(v)
ans = logical
1
all(v) % Not all are non-zero because the second element is not non-zero
ans = logical
0
v = [1,2,3,4]
v = 1×4
1 2 3 4
any(v)
ans = logical
1
all(v) % Every single element is non-zero -- ALL of them.
ans = logical
1

Torsten
Torsten 2023년 2월 21일
vec = [0 5 7];
Is any element of "vec" equal to zero ? Yes, the first one:
any(vec)
ans = logical
1
Are all elements of "vec" equal to zero ? No, only the first one:
all(vec)
ans = logical
0

Sulaymon Eshkabilov
Sulaymon Eshkabilov 2023년 2월 21일
There is one significant difference between any() and all(). Here are definitions:
(1) any() - any True if any element of a vector is a nonzero number or is
logical 1 (TRUE). any ignores entries that are NaN (Not a Number).
(2) all() - all True if all elements of a vector are nonzero.
A = [1 1 0 1 0];
any(A)
ans = logical
1
all(A)
ans = logical
0
Another example - B = [1 1 1 1 1];
B = [1 1 1 1 1];
any(B)
ans = logical
1
all(B)
ans = logical
1
Another example - C = [ 0 0 0 0 0];
C = [ 0 0 0 0 0];
any(C)
ans = logical
0
all(C)
ans = logical
0

Walter Roberson
Walter Roberson 2023년 2월 21일
any: at least one of the inputs is non-zero
all: every input is non-zero
Mathematically, all(x) works out the same as ~any(~x)
  • 0 0 any=false all=false
  • 0 1 any=true all=false
  • 1 0 any=true all=false
  • 1 1 any=true all=true
any(x) is sum(x(:)~=0)>0
all(x) is sum(x(:)~=0)==numel(x)

카테고리

Help CenterFile Exchange에서 Sparse Matrices에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by