Avoid Displaying the data simultaneously in the command window

1 次查看(过去 30 天)
Hi,
My codes usually starts from data in a csv file, so I use the command
***=readtable('***.csv')
then I manipulate this data. During the execution of the program I can see all the operation simultaneously in the command window. Do this displaying slow down my calculations? Can I avoid it?

采纳的回答

Chunru
Chunru 2021-12-10
Yes. You can suppress the display in command window, which also speed up your program when a lot of data is to be displayed:
***=readtable('***.csv');
% add the ";" to suppress the display in command window.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

标签

产品


版本

R2021b

Translated by