How to write a calculated number into a text file…!

1 Ansicht (letzte 30 Tage)
Loran
Loran am 14 Sep. 2014
Kommentiert: Image Analyst am 14 Sep. 2014
Hello,
I have a big text file, which I want first to find a specific “TIME” line in the text file and then add a calculated variable (which I have done it before) underneath that TIME?
For example: add calculated variable “b” after TIME 380.
…..
TIME 350
TIME 360
TIME 370
TIME 380
b
TIME 390
TIME 400
TIME 410
TIME 420
TIME 430
TIME 440
Thanks so much!
Loran

Antworten (1)

Image Analyst
Image Analyst am 14 Sep. 2014
Try fgetl() followed by strfind() to find the desired "TIME" line. Then, once you've found it call fgetl() to read the "b" line and use str2double to convert that string into a numerical variable that you can use to add be to whatever you want to add it to.
  2 Kommentare
Loran
Loran am 14 Sep. 2014
Thanks so much.
I am new to Matlab with very little experience! I tried but did not work. I am sure I did something wrong. I would appreciate if you can elaborate it more!
thanks.
Image Analyst
Image Analyst am 14 Sep. 2014
You forgot to attach your code, and most importantly, the text file. Also let me know what time number and "b" that immediately follows it you want to extract - I don't know if there is just one b in there or if there are tons of b's in there and you just want one particular one.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Characters and Strings finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by