Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

problem with matlab when trying to use a condition

1 Ansicht (letzte 30 Tage)
mar vouz
mar vouz am 26 Apr. 2016
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
Hello,I have a problem with Matlab, if I type a condition such as : if i=1:50 then or while i<= 50 matlab allows me to write other commands but nothing happens at the workspace.Even if I type clc in orer to delete everything ,matlab still remains the same.Any ideas ?

Antworten (1)

jgg
jgg am 26 Apr. 2016
You've opened a scoped environment. In order to end the scope, you need to use end:
if i == 1
% do stuff
end
If you don't use the end command, it will just continue to read in commands into the environment until you terminate it.
  1 Kommentar
jgg
jgg am 26 Apr. 2016
This is not related to the question you've posted here. If this answer resolved your problem, accept it, then post this question as a new question instead.

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by