How to edit an entire column of a text file using MATLAB?
7 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi,
I have text file consist of a node and element connectivity data, with a specific phyiscal property value assigned to each element. I need to change these physical values for every element.
I have attached a sample text file. Precisely, I need to change the values of 'Kxx' and 'Kyy' column.
Is there any way to do this?
6 Commenti
Mathieu NOE
il 14 Dic 2020
sorry, I don't follow
I thought you wanted to change values (in 100 files ? ) , but now you mention I need to perform flow analysis on 100 different values of Kxx and Kyy between 1e-11 and 1e-10
it's not really the same , or ? analysis vs. replacement ??
Risposte (1)
Priyanka Rai
il 4 Gen 2021
It is easier to edit files by code. So, if it is possible to hold a file in memory, you can load it to a MATLAB variable, make the required edits, and write back out.
You can read the entire text file using fileread/ readlines and read the parameters separately using readtable. You can then modify the values in the table and write back out.
Text files are sequential, so processing columns basically is easier in memory.
0 Commenti
Vedere anche
Categorie
Scopri di più su Text Files 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!