how to compare elements in an array respectively

91 次查看(过去 30 天)
i have a static array and 13 variable arrays, each array is the same in terms of size, but now i need to know how can i compare
element 1 with element 1
element 2 with element 2
and so on.....
then goes into an if condition
attached here is what i have so far
  2 个评论
omar mahallawy
omar mahallawy 2019-3-5
Max=[ 29 17 23 29] %static vector
A =7 13 16 28 %from for loop
B = 9 15 18 30 %from for loop
comparing vectors A and B to vector Max
A is accepted becasue non of it's elements exceed the specified elements in vector Max
B is rejected Becasue 30>29

请先登录,再进行评论。

回答(2 个)

Ramnarayan Krishnamurthy
If I understand correctly, you are comparing the arrays element wise and then deciding based on a condition. One approach could be the following:
% Compare elementwise between A and Max; then check if any of the values is non zero i.e. 1
any(A > Max)
% Then use the above as a condition in an if loop to accept or reject the array
if (~any(A>Max)) % then accept
Depending on how you store the 13 variable arrays (A,B, etc) you may be able to accomplish this in a loop
HTH

Sulaymon Eshkabilov
Hi,
Here is a short anwer:
Max_vs_AB = any(Max>A & Max>B);
A_vs_B = any(A>B);
if Max_vs_AB ==1 && A_vs_B==1
fprintf('Accepted matrix is B \n')
disp(B)
elseif Max_vs_AB == 0
fprintf('Accepted matrix is Max \n')
disp(Max)
else
fprintf('Accepted matrix is A \n')
disp(A)
end

类别

Help CenterFile Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by