How does Matlab extract the three columns of data from the ".out" file output by Fluent? What is the code? The attachment file is the data.out
4 ビュー (過去 30 日間)
古いコメントを表示
How does Matlab extract the three columns of data from the ".out" file output by Fluent? What is the code? The attachment file is the data.out
0 件のコメント
回答 (1 件)
Stephen23
2025 年 5 月 13 日
unzip data.zip
T = readtable('data.out', FileType='text', Range=3, Delimiter=["(",")"," "], ...
VariableNamingRule='preserve', LeadingDelimitersRule='ignore')
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で R Language についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!