필터 지우기
필터 지우기

What is the syntax of fscanf? Suppose a.dat contains the float numbers 1 and 2. Write the commands to read the numbers to f1 and f2?

조회 수: 1 (최근 30일)
What is the syntax of fscanf? Suppose a.dat contains the float numbers 1 and 2. Write the commands to read the numbers to f1 and f2?

채택된 답변

Walter Roberson
Walter Roberson 2014년 2월 10일
편집: Walter Roberson 2014년 2월 10일
T = fscanf(fid, '%f%f', 2);
f1 = T(1);
f2 = T(2);
or
f1 = fscanf(fid, '%f', 1);
f2 = fscanf(fid, '%f', 1);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Workspace Variables and MAT-Files에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by