Gtker
Gtker

Reputation: 2247

What does ~= mean in MATLAB?

I've never seen this operator yet.

Upvotes: 6

Views: 8160

Answers (3)

binarycreations
binarycreations

Reputation: 3181

This is the not equal to operator.

In Java and C++ you may have seen it as !=

Upvotes: 10

yuk
yuk

Reputation: 19870

For the documentation see Relational Operators.

Upvotes: 2

Justin Peel
Justin Peel

Reputation: 47082

It means not equal to. In other languages it is often written as != or <>.

Upvotes: 4

Related Questions