Mercurial > hg > octave-lyh
comparison scripts/io/textscan.m @ 16768:e2de3c8882be
copyright notice fixes
* libgui/src/color-picker.cc, libgui/src/color-picker.h,
libgui/src/m-editor/octave-qscintilla.cc,
libgui/src/m-editor/octave-qscintilla.h, libgui/src/qtinfo/parser.cc,
libgui/src/qtinfo/parser.h, libgui/src/qtinfo/webinfo.cc,
libgui/src/qtinfo/webinfo.h, libinterp/corefcn/ellipj.cc,
libinterp/interp-core/jit-ir.cc, libinterp/interp-core/jit-ir.h,
libinterp/interp-core/jit-typeinfo.cc,
libinterp/interp-core/jit-typeinfo.h,
libinterp/interp-core/jit-util.cc, libinterp/interp-core/jit-util.h,
libinterp/interp-core/pt-jit.cc, libinterp/interp-core/pt-jit.h,
libinterp/template-inst/Array-jit.cc, liboctave/numeric/bsxfun.h,
liboctave/util/kpse.cc, scripts/image/imfinfo.m,
scripts/image/imread.m, scripts/io/importdata.m,
scripts/io/textscan.m, scripts/java/usejava.m,
scripts/linear-algebra/logm.m, scripts/sparse/bicg.m,
scripts/specfun/ellipke.m, scripts/specfun/expint.m,
scripts/strings/strjoin.m: List email addresses in Author: lines.
Update copyright notices to use web address for FSF.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Tue, 18 Jun 2013 06:39:12 -0400 |
parents | 0cbe330f39a2 |
children | 7babcdb9bc13 |
comparison
equal
deleted
inserted
replaced
16767:47fbafc6e8e2 | 16768:e2de3c8882be |
---|---|
1 ## Copyright (C) 2010-2013 Ben Abbott <bpabbott@mac.com> | 1 ## Copyright (C) 2010-2013 Ben Abbott |
2 ## | 2 ## |
3 ## This file is part of Octave. | 3 ## This file is part of Octave. |
4 ## | 4 ## |
5 ## Octave is free software; you can redistribute it and/or modify it | 5 ## Octave is free software; you can redistribute it and/or modify it |
6 ## under the terms of the GNU General Public License as published by | 6 ## under the terms of the GNU General Public License as published by |
72 ## of columns matching the number of numeric fields on the first data line of | 72 ## of columns matching the number of numeric fields on the first data line of |
73 ## the file. | 73 ## the file. |
74 ## | 74 ## |
75 ## @seealso{dlmread, fscanf, load, strread, textread} | 75 ## @seealso{dlmread, fscanf, load, strread, textread} |
76 ## @end deftypefn | 76 ## @end deftypefn |
77 | |
78 ## Author: Ben Abbott <bpabbott@mac.com> | |
77 | 79 |
78 function [C, position] = textscan (fid, format = "%f", varargin) | 80 function [C, position] = textscan (fid, format = "%f", varargin) |
79 | 81 |
80 BUFLENGTH = 4096; ## Read buffer | 82 BUFLENGTH = 4096; ## Read buffer |
81 emptfmt = 0; ## Signals deliberately empty format string | 83 emptfmt = 0; ## Signals deliberately empty format string |