# HG changeset patch # User Philip Nienhuis # Date 1432502609 -7200 # Node ID 8a25649b9c774f3fd1dbe1a60a51476b992bf333 # Parent 1b4bef838aafacbafbacebbd45fd2073ce6c0fd1 textread.m: fix texinfo header syntax after commit 481fa65e5cab diff -r 1b4bef838aaf -r 8a25649b9c77 scripts/io/textread.m --- a/scripts/io/textread.m Sun May 24 23:06:31 2015 +0200 +++ b/scripts/io/textread.m Sun May 24 23:23:29 2015 +0200 @@ -68,8 +68,8 @@ ## [a, b] = textread (f, "%f %s") ## returns two columns of data, one with doubles, the other a ## cellstr array: -## a = [1; 2; 3; 4; 5]´ -## b = {"a"; "b"; "c"; "d"; "e"} +## a = [1; 2; 3; 4; 5] +## b = @{"a"; "b"; "c"; "d"; "e"@} ## @end example ## ## @example @@ -77,8 +77,8 @@ ## (read data into two culumns, try to use the format string ## three times) ## returns -## a = [1; 2; 3]´ -## b = {"a"; "b"; "c"} +## a = [1; 2; 3] +## b = @{"a"; "b"; "c"@} ## ## @end example ## @@ -90,7 +90,7 @@ ## b ## ## [a, b] = textread (f, "%f %s", 2) -## returns a = 1 and b = {"a"}; i.e., the format string is used +## returns a = 1 and b = @{"a"@}; i.e., the format string is used ## only once because the format string refers to 2 lines of the ## data file. To obtain 2x1 data output columns, specify N = 4 ## (number of data lines containing all requested data) rather