How to read .params file via matlab?

조회 수: 11 (최근 30일)
Ivan Mich
Ivan Mich 2020년 4월 1일
댓글: Rik 2020년 4월 2일
Hello,
Does anybody knows how to read a .params file via matlab?
I have tried command fopen but it's no use?
Thank you
  댓글 수: 2
Rik
Rik 2020년 4월 1일
You mean this kind of .param file? That just looks like a plain text file. What would you want to do next with the data?
Ivan Mich
Ivan Mich 2020년 4월 1일
it's a kind of text data, but its .params file. To be honest I would like to read this file , like a txt file, and after that I would like to change one number from one specific line in this file

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

채택된 답변

Rik
Rik 2020년 4월 1일
Reading text files to Matlab variables is one of the most commons tasks. One of the many, many functions is my readfile function, which is based on the internal fileread function (where my function also tries to account for the encoding, which is probably irrelevant in your case).
You can indeed use fopen, but you do actually need to use the functions with their intended use: fopen will generate a file identifier, which is a kind of handle that points to a specific file. You need it if you want to use fread or fprintf, two functions I would highly encourge you check out. Also note that every function documention page has a footer that contains links to several related functions that could be usefull.
  댓글 수: 2
Ivan Mich
Ivan Mich 2020년 4월 2일
Ok thank you first of all., My question is after reading this file How could I change one a specific line (let's say line 65) of the file in order to make it?
Rik
Rik 2020년 4월 2일
That depends on how you want to change it. You can either hardcode this change, or you need to find a way for Matlab to generate the required changed text.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Low-Level File I/O에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by