From: <prn...@us...> - 2012-03-18 13:31:25
|
Revision: 9944 http://octave.svn.sourceforge.net/octave/?rev=9944&view=rev Author: prnienhuis Date: 2012-03-18 13:31:18 +0000 (Sun, 18 Mar 2012) Log Message: ----------- Fixed texinfo header (to be compatible w. get_first_help_sentence.m) Modified Paths: -------------- trunk/octave-forge/main/io/inst/append_save.m trunk/octave-forge/main/io/inst/getusedrange.m trunk/octave-forge/main/io/inst/oct2xls.m trunk/octave-forge/main/io/inst/ods2oct.m trunk/octave-forge/main/io/inst/odsopen.m trunk/octave-forge/main/io/inst/odsread.m trunk/octave-forge/main/io/inst/odswrite.m trunk/octave-forge/main/io/inst/xls2oct.m trunk/octave-forge/main/io/inst/xlswrite.m Modified: trunk/octave-forge/main/io/inst/append_save.m =================================================================== --- trunk/octave-forge/main/io/inst/append_save.m 2012-03-18 12:59:01 UTC (rev 9943) +++ trunk/octave-forge/main/io/inst/append_save.m 2012-03-18 13:31:18 UTC (rev 9944) @@ -14,7 +14,7 @@ ## along with this program; If not, see <http://www.gnu.org/licenses/>. ## ## append_save M-file function -## + ## Objective: be able to add variables to existing save files. Works for ## all the types of save files that "save" supports. ## Modified: trunk/octave-forge/main/io/inst/getusedrange.m =================================================================== --- trunk/octave-forge/main/io/inst/getusedrange.m 2012-03-18 12:59:01 UTC (rev 9943) +++ trunk/octave-forge/main/io/inst/getusedrange.m 2012-03-18 13:31:18 UTC (rev 9944) @@ -18,7 +18,7 @@ ## @deftypefn {Function File} [ @var{toprow#}, @var{bottomrow#}, @var{leftcol#}, @var{rightcol#} ] = getusedrange (@var{spptr}, @var{shindex#}) ## Find occupied data range in worksheet @var{shindex#} in a spreadsheet ## pointed to in struct @var{spptr} (either MS-Excel or -## OpenOffice Calc). +## OpenOffice_org Calc). ## ## @var{shindex#} must be numeric and is 1-based. @var{spptr} can either ## refer to an MS-Excel spreadsheet (spptr returned by xlsopen) or an Modified: trunk/octave-forge/main/io/inst/oct2xls.m =================================================================== --- trunk/octave-forge/main/io/inst/oct2xls.m 2012-03-18 12:59:01 UTC (rev 9943) +++ trunk/octave-forge/main/io/inst/oct2xls.m 2012-03-18 13:31:18 UTC (rev 9944) @@ -20,7 +20,7 @@ ## @deftypefnx {Function File} [ @var{xls}, @var{rstatus} ] = oct2xls (@var{arr}, @var{xls}, @var{wsh}, @var{range}) ## @deftypefnx {Function File} [ @var{xls}, @var{rstatus} ] = oct2xls (@var{arr}, @var{xls}, @var{wsh}, @var{range}, @var{options}) ## -## Add data in 1D/2D CELL array @var{arr} into a range specified in +## Add data in 1D/2D CELL array @var{arr} into a cell range specified in ## @var{range} in worksheet @var{wsh} in an Excel spreadsheet file ## pointed to in structure @var{xls}. ## Return argument @var{xls} equals supplied argument @var{xls} and is Modified: trunk/octave-forge/main/io/inst/ods2oct.m =================================================================== --- trunk/octave-forge/main/io/inst/ods2oct.m 2012-03-18 12:59:01 UTC (rev 9943) +++ trunk/octave-forge/main/io/inst/ods2oct.m 2012-03-18 13:31:18 UTC (rev 9944) @@ -20,7 +20,7 @@ ## @deftypefnx {Function File} [ @var{rawarr}, @var{ods}, @var{rstatus} ] = ods2oct (@var{ods}, @var{wsh}, @var{range}) ## @deftypefnx {Function File} [ @var{rawarr}, @var{ods}, @var{rstatus} ] = ods2oct (@var{ods}, @var{wsh}, @var{range}, @var{options}) ## -## Read data contained within range @var{range} from worksheet @var{wsh} +## Read data contained within cell range @var{range} from worksheet @var{wsh} ## in an OpenOffice_org Calc spreadsheet file pointed to in struct @var{ods}. ## ## @var{ods} is supposed to have been created earlier by odsopen in the Modified: trunk/octave-forge/main/io/inst/odsopen.m =================================================================== --- trunk/octave-forge/main/io/inst/odsopen.m 2012-03-18 12:59:01 UTC (rev 9943) +++ trunk/octave-forge/main/io/inst/odsopen.m 2012-03-18 13:31:18 UTC (rev 9944) @@ -19,7 +19,7 @@ ## @deftypefnx {Function File} @var{ods} = odsopen (@var{filename}, @var{readwrite}) ## @deftypefnx {Function File} @var{ods} = odsopen (@var{filename}, @var{readwrite}, @var{reqintf}) ## Get a pointer to an OpenOffice_org spreadsheet in the form of return -## argument @var{ods}. +## argument (struct) @var{ods}. ## ## Calling odsopen without specifying a return argument is fairly useless! ## Modified: trunk/octave-forge/main/io/inst/odsread.m =================================================================== --- trunk/octave-forge/main/io/inst/odsread.m 2012-03-18 12:59:01 UTC (rev 9943) +++ trunk/octave-forge/main/io/inst/odsread.m 2012-03-18 13:31:18 UTC (rev 9944) @@ -20,7 +20,7 @@ ## @deftypefnx {Function File} [@var{numarr}, @var{txtarr}, @var{rawarr}, @var{limits}] = odsread (@var{filename}, @var{wsh}, @var{range}) ## @deftypefnx {Function File} [@var{numarr}, @var{txtarr}, @var{rawarr}, @var{limits}] = odsread (@var{filename}, @var{wsh}, @var{range}, @var{reqintf}) ## -## Read data contained in range @var{range} from worksheet @var{wsh} +## Read data contained from cell range @var{range} in worksheet @var{wsh} ## in OpenOffice_org Calc spreadsheet file @var{filename}. ## ## You need the octave-forge java package (> 1.2.6) and one or both of Modified: trunk/octave-forge/main/io/inst/odswrite.m =================================================================== --- trunk/octave-forge/main/io/inst/odswrite.m 2012-03-18 12:59:01 UTC (rev 9943) +++ trunk/octave-forge/main/io/inst/odswrite.m 2012-03-18 13:31:18 UTC (rev 9944) @@ -19,8 +19,8 @@ ## @deftypefnx {Function File} @var{rstatus} = odswrite (@var{filename}, @var{arr}, @var{wsh}) ## @deftypefnx {Function File} @var{rstatus} = odswrite (@var{filename}, @var{arr}, @var{wsh}, @var{range}) ## @deftypefnx {Function File} @var{rstatus} = odswrite (@var{filename}, @var{arr}, @var{wsh}, @var{range}, @var{reqintf}) -## Add data in 1D/2D array @var{arr} to sheet @var{wsh} in -## OpenOffice_org Calc spreadsheet file @var{filename} in range @var{range}. +## Add data in 1D/2D array @var{arr} into sheet @var{wsh} in +## OpenOffice_org Calc spreadsheet file @var{filename} in cell range @var{range}. ## ## @var{rstatus} returns 1 if write succeeded, 0 otherwise. ## Modified: trunk/octave-forge/main/io/inst/xls2oct.m =================================================================== --- trunk/octave-forge/main/io/inst/xls2oct.m 2012-03-18 12:59:01 UTC (rev 9943) +++ trunk/octave-forge/main/io/inst/xls2oct.m 2012-03-18 13:31:18 UTC (rev 9944) @@ -20,7 +20,7 @@ ## @deftypefnx {Function File} [ @var{rawarr}, @var{xls}, @var{rstatus} ] = xls2oct (@var{xls}, @var{wsh}, @var{range}) ## @deftypefnx {Function File} [ @var{rawarr}, @var{xls}, @var{rstatus} ] = xls2oct (@var{xls}, @var{wsh}, @var{range}, @var{options}) ## -## Read data contained within range @var{range} from worksheet @var{wsh} +## Read data contained within cell range @var{range} from worksheet @var{wsh} ## in an Excel spreadsheet file pointed to in struct @var{xls}. ## ## @var{xls} is supposed to have been created earlier by xlsopen in the Modified: trunk/octave-forge/main/io/inst/xlswrite.m =================================================================== --- trunk/octave-forge/main/io/inst/xlswrite.m 2012-03-18 12:59:01 UTC (rev 9943) +++ trunk/octave-forge/main/io/inst/xlswrite.m 2012-03-18 13:31:18 UTC (rev 9944) @@ -20,7 +20,7 @@ ## @deftypefnx {Function File} @var{rstatus} = xlswrite (@var{filename}, @var{arr}, @var{wsh}, @var{range}) ## @deftypefnx {Function File} @var{rstatus} = xlswrite (@var{filename}, @var{arr}, @var{wsh}, @var{range}, @var{reqintf}) ## Add data in 1D/2D array @var{arr} to worksheet @var{wsh} in Excel -## spreadsheet file @var{filename} in range @var{range}. +## spreadsheet file @var{filename} in cell range @var{range}. ## ## @var{rstatus} returns 1 if write succeeded, 0 otherwise. ## This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |