what is the difference between = and ==?
Afficher commentaires plus anciens
what is the difference between = and == in coding?
Réponses (1)
James Tursa
le 21 Fév 2018
Modifié(e) : James Tursa
le 21 Fév 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
Catégories
En savoir plus sur MATLAB Report Generator dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!