Why is command window printing out all the code?

This is the first time this has happened... Is there any way to disable this?

 Accepted Answer

The echo function may have become activated somehow.
See if:
echo off
solves it.
.

2 Comments

Yes it does! Thank you very much!
As always, my pleasure!

Sign in to comment.

More Answers (1)

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
>>

Categories

Find more on MATLAB in Help Center and File Exchange

Asked:

on 22 May 2021

Commented:

on 22 May 2021

Community Treasure Hunt

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

Start Hunting!