MATLAB: When running a matlab function, it automatically prints the first output to the command window

command windowmatlab function

When running a matlab function, it seems like it automatically prints the first output to the command window. How do I suppress this?

Best Answer

Put a semi-colon after the call. For example instead of
my_test(3.5, 81)
put
my_test(3.5, 81);