what is the difference between = and ==?

Answers (1)

James Tursa
James Tursa on 21 Feb 2018
Edited: James Tursa on 21 Feb 2018
= is used for an assignment
== is the element-wise equality comparison operator
A = B; % Assigns the value of B to the variable A
A == B % The result of comparing the elements of A to B for equality

Categories

Tags

Asked:

on 20 Feb 2018

Edited:

on 21 Feb 2018

Community Treasure Hunt

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

Start Hunting!