MATLAB: How to Load from .txt file while suppressing listing

loadMATLAB

when I apply:
load mydata.txt
the variable mydata is created AND its contents are listed inside the working window (which could be thousands of lines of text).
How can I suppress this listing? Thanks,

Best Answer

load('mydata.txt');