How to edit an entire column of a text file using MATLAB?

조회 수: 7 (최근 30일)
Salman Zafar
Salman Zafar 2020년 12월 12일
답변: Priyanka Rai 2021년 1월 4일
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
Salman Zafar
Salman Zafar 2020년 12월 13일
Actually I need to perform flow analysis on 100 different values of Kxx and Kyy between 1e-11 and 1e-10. So I was thinking to somehow use for loop for this. But I dont know how to do it on data available in text file format.
Mathieu NOE
Mathieu NOE 2020년 12월 14일
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 ??

댓글을 달려면 로그인하십시오.

답변 (1개)

Priyanka Rai
Priyanka Rai 2021년 1월 4일
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.
You can also check this readfile function from the FEX (also works pre- MATLAB R2020b).

카테고리

Help CenterFile Exchange에서 Environment and Settings에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by