# HG changeset patch # User jwe # Date 936327190 0 # Node ID a2b3a1413d28f717bfc0083c1986f9aa5d61af69 # Parent 973c81fbe14466620a93d63e8ec2f11e03132174 [project @ 1999-09-03 02:53:03 by jwe] diff --git a/glob/Makefile.in b/glob/Makefile.in --- a/glob/Makefile.in +++ b/glob/Makefile.in @@ -55,15 +55,15 @@ $(DEFS) $(CPPFLAGS) $(CFLAGS) $< $(OUTPUT_OPTION) .PHONY: clean maintainer-clean glob-clean glob-maintainer-clean distclean -clean glob-clean distclean glob-maintainer-clean:: +clean glob-clean: -rm -f libglob.a *.o core -distclean glob-maintainer-clean:: +distclean glob-maintainer-clean: clean -rm -f TAGS tags Makefile config.status config.cache \ config.h config.log -maintainer-clean:: - -rm -f TAGS tags Makefile config.status config.h config.log configure +maintainer-clean: distclean + -rm -f configure realclean: distclean diff --git a/libcruft/Makerules.in b/libcruft/Makerules.in --- a/libcruft/Makerules.in +++ b/libcruft/Makerules.in @@ -75,9 +75,8 @@ -rmdir pic .PHONY: distclean -maintainer-clean:: - rm -f tags TAGS Makefile - -rmdir pic +maintainer-clean:: distclean + rm -f tags TAGS .PHONY: maintainer-clean dist: diff --git a/scripts/ChangeLog b/scripts/ChangeLog --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,3 +1,7 @@ +Mon Aug 30 12:07:00 1999 John W. Eaton + + * statistics/base/mean.m: Use .', not ' to reorient row vectors. + Tue Aug 17 11:11:27 1999 John W. Eaton * miscellaneous/pack.m: New function. diff --git a/scripts/linear-algebra/cond.m b/scripts/linear-algebra/cond.m --- a/scripts/linear-algebra/cond.m +++ b/scripts/linear-algebra/cond.m @@ -17,12 +17,13 @@ ## Software Foundation, 59 Temple Place - Suite 330, Boston, MA ## 02111-1307, USA. -## usage: cond (a) +## usage: cond (A) ## -## Return the condition number of a, computed using the singular values -## of a. +## Return the condition number of A, computed using the singular values +## of A. If the maximum and minimum singular values of A are both zero, +## cond returns Inf rather than NaN. ## -## See also: norm, svd +## See also: norm, svd, rank ## Author: jwe diff --git a/scripts/statistics/base/mean.m b/scripts/statistics/base/mean.m --- a/scripts/statistics/base/mean.m +++ b/scripts/statistics/base/mean.m @@ -41,7 +41,7 @@ endif if (rows (x) == 1) - x = x'; + x = x.'; endif if (nargin == 1) diff --git a/src/Makefile.in b/src/Makefile.in --- a/src/Makefile.in +++ b/src/Makefile.in @@ -366,12 +366,12 @@ distclean: clean rm -f Makefile octave .fname so_locations - rm -f stamp-prereq + rm -f stamp-prereq stamp-oct-links .PHONY: distclean maintainer-clean: distclean rm -f tags TAGS y.tab.c y.tab.h y.output yy.lex.c lex.cc parse.cc - rm -f oct-gperf.h stamp-prereq + rm -f oct-gperf.h .PHONY: maintainer-clean dist: parse.cc lex.cc oct-gperf.h