在MATLAB中,可以使用textread
函數(shù)來讀取文本文件。以下是一個(gè)簡單的例子:
% 讀取文本文件
fileID = fopen('example.txt', 'r');
data = textread('example.txt', '%s', 'delimiter', '\n');
% 顯示讀取的數(shù)據(jù)
disp(data);
% 關(guān)閉文件
fclose(fileID);
在這個(gè)例子中,example.txt
是要讀取的文本文件的文件名。textread
函數(shù)會(huì)將文件中的內(nèi)容讀取到一個(gè)字符串?dāng)?shù)組中,并顯示出來。最后,使用fclose
函數(shù)關(guān)閉文件。