File: FGETL.m

package info (click to toggle)
scilab 5.3.3-10
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 330,656 kB
file content (17 lines) | stat: -rw-r--r-- 204 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
% Test file for function fgetl()
% Copyright INRIA
% Matlab version: 7.0.0.19901 (R14)
% V.C.

fid=1;

% Example 1
fgetl(fid);

% Example 2
if fgetl(fid)==-1
  disp('eof');
end

% Example 3
l=fgetl(fid);