Clear Filters
Clear Filters

How to say not equals to for 3 variables

14 views (last 30 days)
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

Answers (2)

John D'Errico
John D'Errico on 22 Feb 2016
Edited: John D'Errico on 22 Feb 2016

How about:

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

or...

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

or many other ways.

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

Sign in to comment.


Azzi Abdelmalek
Azzi Abdelmalek on 22 Feb 2016
Edited: Azzi Abdelmalek on 22 Feb 2016
a~=b & a~=c
%or you can use ismember function
~ismember(a,[b,c])
  3 Comments
John D'Errico
John D'Errico on 22 Feb 2016
Edited: John D'Errico on 22 Feb 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.

Sign in to comment.

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!