# HG changeset patch # User John W. Eaton # Date 1277299463 14400 # Node ID f062b569a3010392bec814a57fc20e81b9580019 # Parent 3c59ce262c66f1afd12e1abd3cdd6b551fe2cb63 eliminate trailing whitespace in ChangeLog files diff --git a/doc/ChangeLog b/doc/ChangeLog --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -12,7 +12,7 @@ 2010-06-16 Rik - * interpreter/expr.txi, interpreter/func.txi, interpreter/install.txi, + * interpreter/expr.txi, interpreter/func.txi, interpreter/install.txi, interpreter/plot.txi, interpreter/sparse.txi: Periodic grammar check of documentation to ensure a common format. @@ -20,7 +20,7 @@ * interpreter/arith.txi, interpreter/diffeq.txi, interpreter/intro.txi, interpreter/nonlin.txi, interpreter/poly.txi, interpreter/sparse.txi: - Replace @ifinfo with @ifnottex. + Replace @ifinfo with @ifnottex. 2010-05-07 John W. Eaton @@ -28,7 +28,7 @@ 2010-05-02 Rik - * interpreter/contrib.txi, interpreter/install.txi, + * interpreter/contrib.txi, interpreter/install.txi, interpreter/plot.txi, interpreter/sparse.txi, interpreter/octave.texi: Remove tabs causing problems with pdf formatting. @@ -97,14 +97,14 @@ 2009-12-20 Rik - * interpreter/geometryimages.m: Correctly set postscript output when + * interpreter/geometryimages.m: Correctly set postscript output when QHULL library does not exist and sombrero image is printed. 2009-12-19 Rik * Makefile.am, faq/Makefile.am, interpreter/Makefile.am, - liboctave/Makefile.am, refcard/Makefile.am, interpreter/images.awk: - Eliminate TOPDIR variable in favor of built-in automake variables of + liboctave/Makefile.am, refcard/Makefile.am, interpreter/images.awk: + Eliminate TOPDIR variable in favor of built-in automake variables of top_builddir and top_srcdir. 2009-12-17 Rik @@ -113,7 +113,7 @@ 2009-12-11 Rik - * interpreter/Makefile.am: remove install-local target and use automake + * interpreter/Makefile.am: remove install-local target and use automake syntax to install doc-cache file. 2009-12-10 Rik @@ -128,12 +128,12 @@ 2009-12-08 Rik - * interpreter/Makefile.am: Distribute all generated documentation + * interpreter/Makefile.am: Distribute all generated documentation (.pdf, .ps, .html, .dvi) to remove build requirement for TexInfo 2009-12-07 Rik - * interpreter/Makefile.am, faq/Makefile.am, liboctave/Makefile.am: + * interpreter/Makefile.am, faq/Makefile.am, liboctave/Makefile.am: Document use of NOTPARALLEL directive. 2009-12-07 Rik @@ -172,7 +172,7 @@ 2009-12-04 Ben Abbott * interpreter/geometryimages.m, interpreter/interpimages.m, - interpreter/sparseimages.m: Set default papersize to the desired + interpreter/sparseimages.m: Set default papersize to the desired imagesize. 2009-12-04 John W. Eaton @@ -250,7 +250,7 @@ 2009-12-01 Rik - * faq/Makefile.am, doc/interpreter/bugs.txi, + * faq/Makefile.am, doc/interpreter/bugs.txi, doc/interpreter/install.txi: Eliminate false dependency on conf.texi. 2009-11-30 Rik @@ -292,13 +292,13 @@ 2009-11-25 Rik * interpreter/Makefile.am: - Simplify doc-cache handling in Makefile.am to use only + Simplify doc-cache handling in Makefile.am to use only install-data-local target 2009-11-24 Rik * interpreter/Makefile.am: - Correct Makefile so that it halts on error when unable to build + Correct Makefile so that it halts on error when unable to build doc-cache. 2009-11-23 Rik @@ -333,7 +333,7 @@ 2009-10-23 Rik - * various: Periodic grammar check of Octave documentation files to + * various: Periodic grammar check of Octave documentation files to ensure a standardized format. 2009-10-20 Rik @@ -467,7 +467,7 @@ 2009-05-17 Rik * interpreter/*.txi: Simplify TeXinfo files by eliminating redundant - @iftex followed by @tex construction. Also, spellchecked all .txi + @iftex followed by @tex construction. Also, spellchecked all .txi and .texi files. 2009-05-14 Rik diff --git a/liboctave/CMatrix.cc b/liboctave/CMatrix.cc --- a/liboctave/CMatrix.cc +++ b/liboctave/CMatrix.cc @@ -2665,6 +2665,10 @@ ps, rcon, rank, work.fortran_vec (), lwork, prwork, piwork, info)); + std::cerr << "work(0): " << work(0) << std::endl; + std::cerr << "rwork(0): " << rwork(0) << std::endl; + std::cerr << "iwork(0): " << iwork(0) << std::endl; + // The workspace query is broken in at least LAPACK 3.0.0 // through 3.1.1 when n >= mnthr. The obtuse formula below // should provide sufficient workspace for ZGELSD to operate @@ -2698,6 +2702,10 @@ lwork = static_cast (std::real (work(0))); work.resize (lwork, 1); + std::cerr << "work numel: " << work.numel () << std::endl; + std::cerr << "rwork numel: " << rwork.numel () << std::endl; + std::cerr << "iwork numel: " << iwork.numel () << std::endl; + F77_XFCN (zgelsd, ZGELSD, (m, n, nrhs, tmp_data, m, pretval, maxmn, ps, rcon, rank, work.fortran_vec (), lwork, diff --git a/liboctave/ChangeLog b/liboctave/ChangeLog --- a/liboctave/ChangeLog +++ b/liboctave/ChangeLog @@ -61,10 +61,10 @@ * dim-vector.cc: New source. * Makefile.am: Add it. - * dim-vector.h (dim_vector::chop_all_singletons, - dim_vector::str, dim_vector::num_ones, dim_vector::safe_numel, + * dim-vector.h (dim_vector::chop_all_singletons, + dim_vector::str, dim_vector::num_ones, dim_vector::safe_numel, dim_vector::squeeze, dim_vector::concat, dim_vector::redim): - Move bodies to dim_vector.cc. + Move bodies to dim_vector.cc. (dim_vector::concat): Rewrite. * Array.cc (Array::cat): Fix dim_vector concatenation. Don't use 0x0 as neutral element, because it isn't with dim > 1. diff --git a/scripts/ChangeLog b/scripts/ChangeLog --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -15,13 +15,13 @@ 2010-06-16 Rik - * @ftp/dir.m, @ftp/ftp.m, @ftp/mget.m, @ftp/mput.m, @ftp/rename.m, - deprecated/fstat.m, general/accumdim.m, general/interp1.m, - linear-algebra/ishermitian.m, linear-algebra/issymmetric.m, - miscellaneous/substruct.m, optimization/fminbnd.m, + * @ftp/dir.m, @ftp/ftp.m, @ftp/mget.m, @ftp/mput.m, @ftp/rename.m, + deprecated/fstat.m, general/accumdim.m, general/interp1.m, + linear-algebra/ishermitian.m, linear-algebra/issymmetric.m, + miscellaneous/substruct.m, optimization/fminbnd.m, optimization/fsolve.m, plot/bar.m, plot/daspect.m, plot/pbaspect.m, plot/print.m, polynomial/mkpp.m, polynomial/ppval.m, set/union.m, - signal/unwrap.m, specfun/nthroot.m: Periodic grammar check of + signal/unwrap.m, specfun/nthroot.m: Periodic grammar check of documentation to ensure a common format. 2010-06-14 Rik @@ -56,8 +56,8 @@ 2010-06-08 Rik - * general/cumtrapz.m, general/postpad.m, general/prepad.m, - general/shift.m, general/trapz.m, signal/unwrap.m: Use common + * general/cumtrapz.m, general/postpad.m, general/prepad.m, + general/shift.m, general/trapz.m, signal/unwrap.m: Use common method to find first non-singleton dimension. 2010-06-08 Rik @@ -67,18 +67,18 @@ 2010-06-08 Rik - * general/cart2pol.m, general/cart2sph.m, general/pol2cart.m, - general/sph2cart.m: Add option to operate on column matrix of + * general/cart2pol.m, general/cart2sph.m, general/pol2cart.m, + general/sph2cart.m: Add option to operate on column matrix of coordinates. 2010-06-08 Rik - * general/arrayfun.m, general/cart2pol.m, general/cart2sph.m, - general/idivide.m, general/logspace.m, general/sph2cart.m, - general/structfun.m, image/imagesc.m, io/csvread.m, io/csvwrite.m, - linear-algebra/cond.m, linear-algebra/condest.m, - linear-algebra/isdefinite.m, linear-algebra/null.m, - linear-algebra/orth.m, miscellaneous/list_primes.m, + * general/arrayfun.m, general/cart2pol.m, general/cart2sph.m, + general/idivide.m, general/logspace.m, general/sph2cart.m, + general/structfun.m, image/imagesc.m, io/csvread.m, io/csvwrite.m, + linear-algebra/cond.m, linear-algebra/condest.m, + linear-algebra/isdefinite.m, linear-algebra/null.m, + linear-algebra/orth.m, miscellaneous/list_primes.m, optimization/fminunc.m, optimization/fzero.m, path/matlabroot.m, plot/axis.m, plot/plot.m, plot/semilogx.m, plot/semilogxerr.m, plot/semilogy.m, plot/semilogyerr.m, plot/stem.m, polynomial/poly.m, @@ -86,8 +86,8 @@ polynomial/polyout.m, polynomial/polyval.m, set/ismember.m, sparse/spfun.m, specfun/betaln.m, statistics/base/mean.m, statistics/base/median.m, statistics/base/mode.m, statistics/base/ols.m, - statistics/base/ranks.m, - statistics/distributions/kolmogorov_smirnov_cdf.m, + statistics/base/ranks.m, + statistics/distributions/kolmogorov_smirnov_cdf.m, statistics/distributions/wblpdf.m: Improve documentation strings 2010-06-07 Jaroslav Hajek @@ -103,11 +103,11 @@ 2010-06-03 Alois Schlögl - * signal/arch_test.m, statistics/tests/bartlett_test.m, - statistics/tests/chisquare_test_homogeneity.m, - statistics/tests/chisquare_test_independence.m, - statistics/tests/manova.m, statistics/tests/mcnemar_test.m, - statistics/tests/run_test.m, statistics/distributions/chi2pdf.m: + * signal/arch_test.m, statistics/tests/bartlett_test.m, + statistics/tests/chisquare_test_homogeneity.m, + statistics/tests/chisquare_test_independence.m, + statistics/tests/manova.m, statistics/tests/mcnemar_test.m, + statistics/tests/run_test.m, statistics/distributions/chi2pdf.m: Replace calls to obsolete chisquare_cdf with chi2cdf. 2010-06-03 Rik @@ -117,7 +117,7 @@ 2010-06-02 Rik * optimization/sqp.m: Overhaul sqp code. - Guarantee equivalent results if sqp called with or wihout bounds + Guarantee equivalent results if sqp called with or wihout bounds (bug #29989). Simplify input option handling and add %tests to check validation code. Rewrite documentation string. @@ -137,8 +137,8 @@ validation routines. 2010-05-30 Rik - - * sparse/svds.m: Overhaul code. + + * sparse/svds.m: Overhaul code. Return smallest singular values if sigma == 0 (Bug #29721). Avoid calculating U and V matrices unless requested. Correctly handle zero matrix input. @@ -146,11 +146,11 @@ 2010-05-26 Rik - * statistics/base/histc.m, statistics/base/iqr.m, - statistics/base/kurtosis.m, statistics/base/mode.m, - statistics/base/ranks.m, statistics/base/run_count.m, - statistics/base/skewness.m, statistics/base/statistics.m, - statistics/base/studentize.m: Improve validation of input arguments. + * statistics/base/histc.m, statistics/base/iqr.m, + statistics/base/kurtosis.m, statistics/base/mode.m, + statistics/base/ranks.m, statistics/base/run_count.m, + statistics/base/skewness.m, statistics/base/statistics.m, + statistics/base/studentize.m: Improve validation of input arguments. 2010-05-26 Jaroslav Hajek @@ -161,7 +161,7 @@ * plot/legend.m: Improve documentation string. 2010-05-26 Rik - + * sparse/svds.m: Check struct input arguments. Overhaul documentation. 2010-05-26 Ben Abbott @@ -193,12 +193,12 @@ non-singleton dimension computation. 2010-05-24 Rik - * general/private/__isequal__.m, image/image.m, + * general/private/__isequal__.m, image/image.m, statistics/base/ranks.m: Replace calls to deprecated functions. 2010-05-23 Rik - * image/imshow.m: Scale image point color according to colormap. + * image/imshow.m: Scale image point color according to colormap. Bug #29926. 2010-05-16 Rik @@ -232,7 +232,7 @@ 2010-05-16 Rik - * scripts/plot/contourc.m, scripts/plot/private/__contour__.m, + * scripts/plot/contourc.m, scripts/plot/private/__contour__.m, scripts/plot/surface.m, scripts/plot/surfnorm.m: Check input arguments for size and type (bug #29861). @@ -263,8 +263,8 @@ 2010-05-05 Rik - * statistics/tests/cor_test.m, statistics/tests/t_test.m, - statistics/tests/t_test_2.m, statistics/tests/t_test_regression.m, + * statistics/tests/cor_test.m, statistics/tests/t_test.m, + statistics/tests/t_test_2.m, statistics/tests/t_test_regression.m, statistics/tests/welch_test.m: Replace deprecated function calls. Patch provided by Alois Schlögl. @@ -861,7 +861,7 @@ * plot/axis.m, plot/__go_draw_axes__.m, plot/colorbar.m, plot/isocolors.m, plot/isonormals.m, plot/isosurface.m, - plot/plotyy.m, plot/polar.m, plot/surfl.m, + plot/plotyy.m, plot/polar.m, plot/surfl.m, plot/private/__actual_axis_position.m: Replace dataaspectratio and dataaspectratiomode properties with plotboxaspectratio and plotboxaspectratio properties. @@ -1044,7 +1044,7 @@ * general/structfun.m, miscellaneous/getfield.m, miscellaneous/orderfields.m, miscellaneous/setfield.m, - miscellaneous/substruct.m: Update documentation string. + miscellaneous/substruct.m: Update documentation string. 2010-01-16 David Bateman diff --git a/src/ChangeLog b/src/ChangeLog --- a/src/ChangeLog +++ b/src/ChangeLog @@ -15,7 +15,7 @@ 2010-06-21 Rik - * DLD-FUNCTIONS/dlmread.cc: Fix spreadsheet style range option. + * DLD-FUNCTIONS/dlmread.cc: Fix spreadsheet style range option. (bug #30183). 2010-06-21 David Bateman @@ -65,11 +65,11 @@ 2010-06-16 Rik - * DLD-FUNCTIONS/cellfun.cc, DLD-FUNCTIONS/dot.cc, - DLD-FUNCTIONS/gammainc.cc, DLD-FUNCTIONS/lookup.cc, + * DLD-FUNCTIONS/cellfun.cc, DLD-FUNCTIONS/dot.cc, + DLD-FUNCTIONS/gammainc.cc, DLD-FUNCTIONS/lookup.cc, DLD-FUNCTIONS/lu.cc, DLD-FUNCTIONS/luinc.cc, DLD-FUNCTIONS/onCleanup.cc, DLD-FUNCTIONS/sparse.cc, DLD-FUNCTIONS/spparms.cc, DLD-FUNCTIONS/svd.cc, - data.cc, dirfns.cc, graphics.cc, mappers.cc, ov-cell.cc, ov-range.cc: + data.cc, dirfns.cc, graphics.cc, mappers.cc, ov-cell.cc, ov-range.cc: Periodic grammar check of documentation to ensure a common format. 2010-06-11 David Bateman @@ -127,9 +127,9 @@ 2010-06-08 Rik - * DLD-FUNCTIONS/bsxfun.cc, DLD-FUNCTIONS/cellfun.cc, - DLD-FUNCTIONS/det.cc, DLD-FUNCTIONS/lookup.cc, DLD-FUNCTIONS/lu.cc, - DLD-FUNCTIONS/rand.cc, DLD-FUNCTIONS/svd.cc, DLD-FUNCTIONS/tril.cc, + * DLD-FUNCTIONS/bsxfun.cc, DLD-FUNCTIONS/cellfun.cc, + DLD-FUNCTIONS/det.cc, DLD-FUNCTIONS/lookup.cc, DLD-FUNCTIONS/lu.cc, + DLD-FUNCTIONS/rand.cc, DLD-FUNCTIONS/svd.cc, DLD-FUNCTIONS/tril.cc, data.cc, ov.cc: Improve documentation string. 2010-06-06 Michael Goffioul @@ -276,7 +276,7 @@ 2010-05-13 Jaroslav Hajek * load-save.cc (install_loaded_variable): Pre-extract symbol record - reference to do all operations. + reference to do all operations. 2010-05-11 David Bateman @@ -297,7 +297,7 @@ 2010-05-10 Rik - * DLD-FUNCTIONS/qr.cc: Split qrdelete test into high precision test + * DLD-FUNCTIONS/qr.cc: Split qrdelete test into high precision test when QRUPDATE is present and low precision when it is not. 2010-05-10 Jaroslav Hajek @@ -381,7 +381,7 @@ 2010-05-02 Rik - * ov-cell.cc: Wrap documentation line to prevent overfull hbox + * ov-cell.cc: Wrap documentation line to prevent overfull hbox LaTex warning 2010-05-01 Ben Abbott @@ -775,12 +775,12 @@ 2010-03-09 Jaroslav Hajek - * ov-intx.h + * ov-intx.h (OCTAVE_INT_NDARRAY_T::convert_gripe): Remove method. (OCTAVE_INT_NDARRAY_T): Remove all uses. (OCTAVE_INT_T::convert_gripe): Remove method. (OCTAVE_INT_T): Remove all uses. - * ov.cc (convert_to_int_array, convert_to_octave_idx_type_array): + * ov.cc (convert_to_int_array, convert_to_octave_idx_type_array): Remove int conversion warnings. * data.cc (NATIVE_REDUCTION_1): Ditto. @@ -1936,7 +1936,7 @@ 2010-01-14 Jaroslav Hajek - * strfns.cc (do_strcmp_fun, + * strfns.cc (do_strcmp_fun, strcmp_array_op, strcmp_str_op, strcmpi_array_op, strcmpi_str_op, strncmp_array_op, strncmp_str_op, @@ -2103,7 +2103,7 @@ * ls-mat5.cc (read_mat5_binary_element): Ditto. * mex.cc (call_mex, mexGetVariable): Ditto. * oct-hist.cc (do_edit_history, do_run_history): Ditto. - * octave.cc (execute_startup_files, execute_eval_option_code, + * octave.cc (execute_startup_files, execute_eval_option_code, execute_command_line_file): Ditto. * ov-builtin.cc (octave_builtin::do_multi_index_op): Ditto. * ov-class.cc (octave_class::subsasgn, octave_class::print_raw): @@ -2148,7 +2148,7 @@ * DLD-FUNCTIONS/quad.cc (Fquad): Ditto. * DLD-FUNCTIONS/rand.cc (Frandn, Frande, Frandg, Frandp): Ditto. * DLD-FUNCTIONS/typecast.cc (get_data_and_bytesize, Ftypecast): Ditto. - * DLD-FUNCTIONS/urlwrite.cc (Furlwrite, mput_directory, + * DLD-FUNCTIONS/urlwrite.cc (Furlwrite, mput_directory, getallfiles, F__ftp_mget__): Ditto. 2010-01-05 Jaroslav Hajek @@ -2231,7 +2231,7 @@ * ov.cc (decode_subscripts): Move to utils.cc. * utils.cc (decode_subscripts): New func. * utils.h: Declare it. - * DLD-FUNCTIONS/cellfun.cc (Fcellfun): Optimize the + * DLD-FUNCTIONS/cellfun.cc (Fcellfun): Optimize the `cellfun (@subsref, args, {subs}, "uniformoutput", true)' case. 2009-12-26 Jaroslav Hajek