MATLAB: Help fget1 says the function does not exist. I am using Matlab 2017a, what can be the problem

does not existfget1reading text file

fget1 is supposed to read lines from a text file, but I get the error message saying that fget1 does not exist. What can be the problem? I downloaded the newest Matlab version but I still have the problem.

Best Answer

You need
fgetl
not
fget1
(that is the lowercase L, not the number one).