[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Are ~=, != and ne exactly the same?
From: |
Peng Yu |
Subject: |
Are ~=, != and ne exactly the same? |
Date: |
Tue, 21 May 2013 12:00:31 -0500 |
Hi,
According to the help, it seems that ~=, != and ne are exactly the
same (except that ne is not an operator). Is my interpretation
correct? Thanks.
-- Operator: ~=
Logical 'not equals' operator.
See also: !=, ne
-- Operator: !=
Logical 'not equals' operator.
See also: ~=, ne
-- Built-in Function: ne (X, Y)
Return true if the two inputs are not equal. This function is
equivalent to `x != y'.
See also: eq, isequal
--
Regards,
Peng
- Are ~=, != and ne exactly the same?,
Peng Yu <=