필터 지우기
필터 지우기

read only the numerical value of a file

조회 수: 2 (최근 30일)
Mohammad
Mohammad 2018년 1월 15일
댓글: Star Strider 2018년 1월 15일
Hi, I have a file which is attached. I just want to read the number in it and store it in a variable. Thanks for your help.

채택된 답변

Star Strider
Star Strider 2018년 1월 15일
This works:
filename = 'out_log_test-weak.txt';
fidi = fopen(filename,'rt');
D = textscan(fidi, '%*s%f%%', 'HeaderLines',1);
number = [D{:}]
number =
90.0800
  댓글 수: 11
Mohammad
Mohammad 2018년 1월 15일
I was already testing the other command, fscanf, which caused the prevention of accessing the file. Restarting MATLAB solved the issue !
Star Strider
Star Strider 2018년 1월 15일
Thanks! This information could help if others have the same problem.
Restarting MATLAB might not have been necessary, though. Running:
fclose('all');
from your Command Window could have worked.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by