Effacer les filtres
Effacer les filtres

Why is it showing Matrix dimensions must agree and how do i fix this?

1 vue (au cours des 30 derniers jours)
It shows this while i try to implement a while loop. I want the loop to keep repeating until user types the correct variable as written earlier.

Réponse acceptée

Walter Roberson
Walter Roberson le 14 Avr 2018
Do not use = or ~= to compare character vectors. Use strcmp() instead.
(With R2016b or later, you can use = and ~= to compare string objects, but you are not using string objects.)
Reminder: we cannot copy and paste a screen snapshot to test with, especially when the screen snapshot cuts off the code.
  3 commentaires
Walter Roberson
Walter Roberson le 14 Avr 2018
if ~ismember(gh, {'f', 'in', 'fe', 'mi', ...})
disp(...)
...
end
Abhey Pal Singh Kumar
Abhey Pal Singh Kumar le 14 Avr 2018
Thanks so much. All working now

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Structures dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by