How to make statements intersect

2 visualizaciones (últimos 30 días)
Ani Asoyan
Ani Asoyan el 21 de En. de 2020
Comentada: Ani Asoyan el 21 de En. de 2020
How can I make if command's statements intersect and after that receive the result. For example the answer for this code is 'noyesno' ....but I want it to be no, cause not all the elements of a and b are equal.
n=3
a=[0 1 2]
b=[1 1 3]
i=1
for i=1:n
if a(i)==b(i)
fprintf ('yes')
else
fprintf ('no')
end
end

Respuesta aceptada

Alex Mcaulley
Alex Mcaulley el 21 de En. de 2020
a=[0 1 2];
b=[1 1 3];
if all(a==b)
fprintf ('yes')
else
fprintf ('no')
end
  1 comentario
Ani Asoyan
Ani Asoyan el 21 de En. de 2020
Thank you I this is all I wanted !!!

Iniciar sesión para comentar.

Más respuestas (1)

Bhaskar R
Bhaskar R el 21 de En. de 2020
Editada: Bhaskar R el 21 de En. de 2020
n=3; % length of the your vector i guess
a=[0 1 2];
b=[1 1 3];
% depends on n value
is_intersect = sum(a(1:n)==b(1:n))==n;
% if a and b vectors are same length
is_intersect = sum(a==b)==length(a);
if is_intersect
fprintf ('yes');
else
fprintf ('no');
end
Hope i got you !!
  1 comentario
Ani Asoyan
Ani Asoyan el 21 de En. de 2020
It's more complicated than the answer above but also very useful, thank you !

Iniciar sesión para comentar.

Categorías

Más información sobre Startup and Shutdown en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by