Mercurial > hg > octave-thorsten
changeset 3265:a2b3a1413d28
[project @ 1999-09-03 02:53:03 by jwe]
author | jwe |
---|---|
date | Fri, 03 Sep 1999 02:53:10 +0000 |
parents | 973c81fbe144 |
children | 3add30d33bd0 |
files | glob/Makefile.in libcruft/Makerules.in scripts/ChangeLog scripts/linear-algebra/cond.m scripts/statistics/base/mean.m src/Makefile.in |
diffstat | 6 files changed, 18 insertions(+), 14 deletions(-) [+] |
line wrap: on
line diff
--- 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
--- 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:
--- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,3 +1,7 @@ +Mon Aug 30 12:07:00 1999 John W. Eaton <jwe@bevo.che.wisc.edu> + + * statistics/base/mean.m: Use .', not ' to reorient row vectors. + Tue Aug 17 11:11:27 1999 John W. Eaton <jwe@bevo.che.wisc.edu> * miscellaneous/pack.m: New function.
--- 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
--- 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)
--- 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