필터 지우기
필터 지우기

How to load and read these files in matlab?

조회 수: 7 (최근 30일)
SUNANNA S S
SUNANNA S S 2017년 4월 20일
댓글: SUNANNA S S 2017년 4월 20일
Please help me to load and read this file and convert it to corresponding adjacency matrix.

채택된 답변

Philip G
Philip G 2017년 4월 20일
편집: Philip G 2017년 4월 20일
If you are unsure how to import a certain file ... you can use the import wizard (right click on your file in MATLAB and choose "import data"). Then adjust the settings how you want to import the data and finally on the right side under "import selection" choose "generate script".
For the first file (retweet.txt) - this is a code that should work (which basically has just been copied from the "generate script" result):
%%Initialize variables.
filename = 'retweet.txt';
delimiter = ',';
%%Read columns of data as text:
% For more information, see the TEXTSCAN documentation.
formatSpec = '%s%[^\n\r]';
%%Open the text file.
fileID = fopen(filename,'r');
%%Read columns of data according to the format.
dataArray = textscan(fileID, formatSpec, 'Delimiter', delimiter, 'ReturnOnError', false);
%%Close the text file.
fclose(fileID);
For the second file - change the following:
delimiter = '\t';
formatSpec = '%s%s%s%[^\n\r]';
You just have to convert the resulting cell arrays into the type of your choosing. Also here - the "generate script" button creates these lines for you (and will follow the lines I pasted in the beginning).

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Text Files에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by