Input files editing format
1 回表示 (過去 30 日間)
古いコメントを表示
RAKESH KUMAR TOTA
2021 年 1 月 18 日
コメント済み: RAKESH KUMAR TOTA
2021 年 1 月 18 日
Hi, Good morning
I have an input file input.txt, i need to save the format in different two files node.txt and el.txt in the format attached files. Any help would be appreciated . Thank you inadvance.
2 件のコメント
採用された回答
Walter Roberson
2021 年 1 月 18 日
fid = fopen('input.txt', 'r');
nodedata = cell2mat( textscan(fid, '%*f,%f,%f', 'CommentStyle', {'*Heading', '*Node'}) );
eldata = cell2mat( textscan(fid, '%*f,%f,%f,%f,%f', 'HeaderLines', 1) );
fclose(fid)
8 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Data Import and Export についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!