reading data from dataset.txt

1 回表示 (過去 30 日間)
ahmad
ahmad 2012 年 7 月 5 日
hello all, i have this file that contain the following
#NB_OF_USERS_PAIRS 1
1 2 2
#NB_OF_EDGE_PAIRS 2
2 2 3
3 2 3
i want to make a function that read from this file the number 1 after the #NB_OF_USERS_PARIS and read then the numbers 1 2 2 and so on, any help to begin writing this function please

回答 (2 件)

Nirmal
Nirmal 2012 年 7 月 5 日
fid = fopen('data.txt');
M=textscan(fid,'%s');
fclose(fid);
X=M{1,1}
X will have each element including the header for users pairs and edge pairs.

ahmad
ahmad 2012 年 7 月 6 日
this is converting the text in to cell is there another way to convert it to string ??

カテゴリ

Help Center および File ExchangeLarge Files and Big Data についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by