Why is command window printing out all the code?
9 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
K Yang
am 22 Mai 2021
Kommentiert: Star Strider
am 22 Mai 2021

This is the first time this has happened... Is there any way to disable this?
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
per isakson
am 22 Mai 2021
Bearbeitet: per isakson
am 22 Mai 2021
There is a function called echo(), which I've never used. Have you run
echo on
by mistake?
I reproduced the behavior you see
>> echo on
>> Untitled
%%
A = 1;
B = 2;
C = 3;
D = 4;
>>
>> echo off
>> Untitled
>>
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!