필터 지우기
필터 지우기

error in fopen when use dlmread

조회 수: 1 (최근 30일)
Skydriver
Skydriver 2018년 10월 11일
댓글: Star Strider 2018년 10월 12일
file1 = dlmread('Matched_TNG20100518CISI_N.txt','', 5, 0) fid = fopen(file1, 'r') Axcel1=fscanf(file1,'%g %g %g %g %g\n',[4,Inf])';
Error using fopen File identifier must be an integer-valued scalar of type double.
Any one can help me?

답변 (1개)

Star Strider
Star Strider 2018년 10월 11일
Simply use the one line:
file1 = dlmread('Matched_TNG20100518CISI_N.txt','', 5, 0);
Then, check to see what ‘file1’ contains. It should be a matrix of numeric data that you can access directly.
  댓글 수: 4
Skydriver
Skydriver 2018년 10월 12일
Okay, thx, It's done
Star Strider
Star Strider 2018년 10월 12일
My pleasure.
If my Answer helped you solve your problem, please Accept it!

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

카테고리

Help CenterFile Exchange에서 Data Import and Export에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by