# HG changeset patch # User jwe # Date 1159796927 0 # Node ID bd22133332bd872799ce2152a833ebd9f8804e2b # Parent a104f362b5d458ac0f497e1600e42b079a5142aa [project @ 2006-10-02 13:48:46 by jwe] diff -r a104f362b5d4 -r bd22133332bd scripts/ChangeLog --- a/scripts/ChangeLog Mon Oct 02 02:13:53 2006 +0000 +++ b/scripts/ChangeLog Mon Oct 02 13:48:47 2006 +0000 @@ -1,3 +1,11 @@ +2006-10-02 Thomas Weber + + * miscellaneous/doc.m: Swap file and directory args to info. + +2006-10-01 Arno Onken + + * statistics/distributions/exprnd.m: Fix typo. + 2006-09-30 Benjamin Lindner * polynomial/ppval.m: Use .' instead of '. diff -r a104f362b5d4 -r bd22133332bd scripts/miscellaneous/doc.m --- a/scripts/miscellaneous/doc.m Mon Oct 02 02:13:53 2006 +0000 +++ b/scripts/miscellaneous/doc.m Mon Oct 02 13:48:47 2006 +0000 @@ -73,7 +73,7 @@ info_file_name = info_file (); endif - cmd = sprintf ("\"%s\" --file \"%s\" --directory \"%s\"", + cmd = sprintf ("\"%s\" --directory \"%s\" --file \"%s\"", info_program (), info_dir, info_file_name); if (! isempty (fname)) diff -r a104f362b5d4 -r bd22133332bd scripts/statistics/distributions/exprnd.m --- a/scripts/statistics/distributions/exprnd.m Mon Oct 02 02:13:53 2006 +0000 +++ b/scripts/statistics/distributions/exprnd.m Mon Oct 02 13:48:47 2006 +0000 @@ -44,7 +44,7 @@ sz = [r, c]; if (any (size (l) != 1) && - ((length (size (nl)) != length (sz)) || any (size (l) != sz))) + (length (size (l)) != length (sz) || any (size (l) != sz))) error ("exprnd: lambda must be scalar or of size [r, c]"); endif elseif (nargin == 2)