log liboctave/array/dMatrix.cc @ 33634:4a70f390c85e default tip @

age author description
Wed, 13 Mar 2024 14:11:56 -0700 Rik Replace obscure Fortran coding pattern in liboctave with modern C++ (bug #65343)
Sat, 17 Feb 2024 15:59:36 -0500 John W. Eaton eliminate volatile from declaration of temporary used to force float truncation
Sat, 17 Feb 2024 11:51:15 -0500 John W. Eaton eliminate more obsolete volatile declarations
Wed, 27 Dec 2023 16:55:14 -0800 Rik maint: New method rwdata() as clearer alternative to fortran_vec().
Tue, 26 Dec 2023 16:24:33 -0800 Rik maint: Call inverse functions with boolean parameters with true/false rather than 1/0.
Fri, 22 Dec 2023 12:08:17 -0500 John W. Eaton maint: update Octave Project Developers copyright for the new year stable
Tue, 12 Dec 2023 21:18:18 -0800 Rik maint: C++ style check for liboctave/ before 9.1 release. stable
Fri, 24 Mar 2023 15:43:28 -0700 Rik Re-use linspace code for scalars for computing linspace of vectors.
Tue, 24 Jan 2023 17:19:44 -0800 Rik maint: Eliminate "(void)" in C++ function prototypes/declarations.
Fri, 06 Jan 2023 13:11:27 -0500 John W. Eaton update Octave Project Developers copyright for the new year stable
Mon, 21 Nov 2022 18:15:03 +0100 Markus Mützel inv: Don't call LAPACK function *gecon if matrix contains NaN values (bug #63384). stable
Tue, 28 Dec 2021 18:22:40 -0500 John W. Eaton update Octave Project Developers copyright for the new year stable
Sat, 25 Dec 2021 19:16:44 -0800 Rik Fix handling of scalar exceptional values in inv() (bug #61689) stable
Mon, 29 Nov 2021 10:03:47 -0800 Rik maint: style check C++ files in liboctave/ ahead of 7.1 release. stable
Sun, 21 Nov 2021 16:53:49 -0800 Rik Return Inf for inv(0) for compatibility with division operator and Matlab (bug #52285).
Mon, 30 Aug 2021 09:45:47 -0700 Rik maint: rename schur member function from "unitary_matrix" to "unitary_schur_matrix"
Fri, 30 Jul 2021 11:46:05 -0400 John W. Eaton prefer data over fortran_vec for read-only access to data
Wed, 21 Jul 2021 18:51:54 +0200 Markus Mützel Use LU factorization to solve (close to) singular full matrices.
Wed, 12 May 2021 19:28:54 +0200 Markus Mützel maint: merge stable to default.
Wed, 28 Apr 2021 22:57:42 -0400 John W. Eaton use std::size_t and std::ptrdiff_t in C++ code (bug #60471) stable
Wed, 28 Apr 2021 22:57:42 -0400 John W. Eaton use std::size_t and std::ptrdiff_t in C++ code (bug #60471)
Wed, 28 Apr 2021 13:46:02 -0400 John W. Eaton move idx_vector classes inside octave namespace
Wed, 10 Feb 2021 10:10:40 -0500 John W. Eaton maint: merge stable to default.
Wed, 10 Feb 2021 09:52:15 -0500 John W. Eaton update Octave Project Developers copyright for the new year stable
Tue, 11 Aug 2020 15:20:01 -0400 John W. Eaton refactor octave_read_* and octave_write_* functions
Wed, 08 Jan 2020 11:59:41 -0500 John W. Eaton update formatting of copyright notices
Mon, 06 Jan 2020 22:29:51 -0500 John W. Eaton update Octave Project Developers copyright for the new year
Mon, 06 Jan 2020 15:38:17 -0500 John W. Eaton use centralized file for copyright info for individual contributors
Mon, 30 Sep 2019 11:05:42 +0200 Carlo de Falco Remove wrapper template class NoAlias<T> (bug #56752)
Wed, 12 Jun 2019 16:55:22 -0500 John W. Eaton delete unused file functor.h
Wed, 02 Jan 2019 16:32:43 -0500 John W. Eaton maint: Update copyright dates in all source files. stable
Sat, 11 Aug 2018 22:46:53 -0700 Rik Avoid calculating norm of matrix when not requested in liboctave Matrix classes.
Wed, 11 Jul 2018 17:41:36 -0400 John W. Eaton remove fftpack sources
Thu, 07 Jun 2018 10:11:54 -0400 John W. Eaton prefer <istream>, <ostream>, or <iosfwd> to <iostream> where possible
Fri, 06 Apr 2018 20:25:05 +0300 Maor Shutman linspace: handle ranges with equal Inf endpoints (bug #53489)
Fri, 30 Mar 2018 09:19:05 -0400 John W. Eaton maint: Update copyright dates in all source files. stable
Sat, 06 Jan 2018 07:57:19 -0800 Rik maint: Update punctuation for GPL v3 license text.
Sun, 26 Nov 2017 14:50:20 -0800 Rik Return NaN arrays for left division operator when operands contain NaNs (bug #52516).
Thu, 23 Nov 2017 13:57:42 -0800 Rik maint: merge stable to default.
Thu, 23 Nov 2017 13:33:48 -0800 Rik Calculate 1-norm of matrices to assess whether NaN or Inf are present (bug #39000). stable
Tue, 21 Nov 2017 22:00:45 -0800 Rik maint: Correct typo in comment "Throw-away" => "Throw away"
Tue, 14 Nov 2017 09:41:07 +0100 Marco Caliari Fix incorrect size of the solution of some singular systems (bug #52402).
Fri, 03 Nov 2017 13:53:45 -0700 Rik Use std::max to simplify calculating pinv tolerance.
Fri, 03 Nov 2017 10:03:36 -0700 Rik Return correct value for pinv of zero vectors and scalars (bug #51246).
Wed, 13 Sep 2017 16:38:06 -0700 Mike Miller fix possible array bounds error when calculating inverse (bug #49235)
Fri, 28 Jul 2017 15:40:00 -0700 Rik Use character literals 'c' rather than string literals "c" when possible.
Tue, 25 Jul 2017 14:54:10 -0700 Rik Use C++11 nullptr rather than 0 in code (bug #51565).
Tue, 27 Jun 2017 09:24:08 -0700 Rik Use imag, real, arg from std library for Complex types.
Wed, 14 Jun 2017 08:34:43 -0700 Rik maint: Deprecate is_symmetric and replace with issymmetric.
Wed, 14 Jun 2017 08:14:08 -0700 Rik maint: Deprecate is_hermitian and replace with ishermitian.
Tue, 13 Jun 2017 22:05:03 -0700 Rik maint: Deprecate is_square and replace with issquare.
Tue, 02 May 2017 15:00:43 -0700 Rik maint: Eliminate fairly useless 1-line comment ahead of copyright statement for some files.
Thu, 27 Apr 2017 17:33:10 -0700 Rik maint: Wrap tertiary operator in parentheses "(COND ? x : y)".
Thu, 27 Apr 2017 15:18:20 -0700 Rik maint: Use convention 'int *x' for naming pointers.
Wed, 26 Apr 2017 09:57:28 -0700 Rik maint: Eliminate <cfloat.h> header from liboctave files.
Mon, 24 Apr 2017 17:20:37 -0700 Rik maint: Use convention 'int& x' for naming references.
Wed, 22 Feb 2017 12:58:07 -0500 John W. Eaton maint: Merge stable to default.
Wed, 22 Feb 2017 12:39:29 -0500 John W. Eaton maint: Update copyright dates. stable
Mon, 23 Jan 2017 14:27:48 -0500 John W. Eaton maint: Merge stable to default.
Fri, 20 Jan 2017 12:19:08 -0500 John W. Eaton maint: strip extra trailing newlines from files. stable