Borrar filtros
Borrar filtros

How to say not equals to for 3 variables

14 visualizaciones (últimos 30 días)
Avishka Karunaratne
Avishka Karunaratne el 22 de Feb. de 2016
Comentada: John D'Errico el 22 de Feb. de 2016
I want to set the condition in my if loop for which , if a is not equal to b and not equal to c then do ... how do i do this a ~= b ~= c does not work

Respuestas (2)

John D'Errico
John D'Errico el 22 de Feb. de 2016
Editada: John D'Errico el 22 de Feb. de 2016

How about:

a~=b && a~=c && b~=c

or...

numel(unique([a,b,c])) == 3

or many other ways.

  3 comentarios
Stephen23
Stephen23 el 22 de Feb. de 2016
@Avishka Karunaratne: correct.
@John D'Errico: +1 for the nice answer.
John D'Errico
John D'Errico el 22 de Feb. de 2016
Yes. The nice thing about using unique here is it makes the test easy, for any number of variables.

Iniciar sesión para comentar.


Azzi Abdelmalek
Azzi Abdelmalek el 22 de Feb. de 2016
Editada: Azzi Abdelmalek el 22 de Feb. de 2016
a~=b & a~=c
%or you can use ismember function
~ismember(a,[b,c])
  3 comentarios
Avishka Karunaratne
Avishka Karunaratne el 22 de Feb. de 2016
How do I do it then ?
John D'Errico
John D'Errico el 22 de Feb. de 2016
Editada: John D'Errico el 22 de Feb. de 2016
Read my answer as to how to do it. There I gave two ways of solving the problem that are NOT subject to failure.

Iniciar sesión para comentar.

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by