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
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposte (1)
Stephen23
il 13 Mag 2025
unzip data.zip
T = readtable('data.out', FileType='text', Range=3, Delimiter=["(",")"," "], ...
VariableNamingRule='preserve', LeadingDelimitersRule='ignore')
0 Commenti
Vedere anche
Categorie
Scopri di più su R Language in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!