Why is it showing Matrix dimensions must agree and how do i fix this?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Abhey Pal Singh Kumar
el 14 de Abr. de 2018
Comentada: Abhey Pal Singh Kumar
el 14 de Abr. de 2018
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.
0 comentarios
Respuesta aceptada
Walter Roberson
el 14 de Abr. de 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 comentarios
Walter Roberson
el 14 de Abr. de 2018
if ~ismember(gh, {'f', 'in', 'fe', 'mi', ...})
disp(...)
...
end
Más respuestas (0)
Ver también
Categorías
Más información sobre Characters and Strings en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!