Script won't run, keeps saying file name on command window

My matlab .m file will not run script. It keeps saying the file name in the command window.

 Accepted Answer

It means you suppressed your output by semicolon (;)
An example:
>> a=1:10
a =
Columns 1 through 8
1 2 3 4 5 6 7 8
Columns 9 through 10
9 10
>> a=1:10;
>>

More Answers (0)

Categories

Find more on Environment and Settings in Help Center and File Exchange

Products

Release

R2018a

Asked:

Jen
on 14 Sep 2018

Commented:

on 14 Sep 2018

Community Treasure Hunt

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

Start Hunting!