Mercurial > hg > octave-lyh
view libinterp/corefcn/sqrtm.cc @ 17335:fe6518a1d87c
Move TeX symbol decoding into the lexer (bug #39831).
* libinterp/Makefile.am (BUILT_SOURCES): Add corefcn/oct-tex-symbols.cc.
(BUILT_DISTFILES): Add corefcn/oct-tex-lexer.ll and
corefcn/oct-tex-symbols.cc.
(EXTRA_DIST): Add corefcn/oct-tex-lexer.in.ll and
corefcn/oct-tex-symbols.in.
(ULT_DIST_SRC): Filter out corefcn/oct-tex-lexer.ll from DIST_SRC and
add corefcn/oct-tex-lexer.in.ll instead.
(CLEAN_FILES): Add corefcn/oct-tex-parser.output.
* libinterp/corefcn/modules.mk (corefcn/oct-tex-lexer.ll,
corefcn/oct-tex-symbols.cc): New rules to build the TeX lexer.
(corefcn/txt-eng.cc): Add dependency on corefcn/oct-tex-symbols.cc.
* libinterp/corefcn/oct-tex-lexer.in.ll: Renamed from oct-tex.lexer.ll.
Remove COMMAND state. Remove ID regex. Replace rules for symbols with
tag @SYMBOL_RULES@.
* libinterp/corefcn/oct-tex-parser.yy (ID, CMD, identifier): Remove
tokens.
(SYM, sym): New token and value.
(symbol_element): Build from SYM.
* libinterp/corefcn/oct-tex-symbols.in: New file with supported TeX
symbols and corresponding codes (unicode and MS symbols).
* libinterp/corefcn/txt-eng.h (class text_element_symbol): Make it
inherit from text_element.
(text_element_symbol::code): Removed member.
(text_element_symbol::symbol): New member.
(text_element_symbol::text_element_symbol): Adapt constructor.
(text_element_symbol::get_symbol): New method.
(text_element_symbol::get_symbol_code): Make const.
* libinterp/corefcn/txt-eng.cc (symbol_names, symbol_codes): Remove
static variables, now auto-generated from oct-tex-symbols.in.
(oct-tex-symbols.cc): New include.
(text_element_symbol::get_symbol_code): Change implementation to simply
index into auto-generated symbol_codes array.
* libinterp/corefcn/txt-eng-ft.cc
(ft_render::visit(text_element_symbol)): Don't use
text_element_symbol::string_value(), use
text_element_symbol::get_symbol() instead.
author | Michael Goffioul <michael.goffioul@gmail.com> |
---|---|
date | Sat, 24 Aug 2013 14:27:09 -0400 |
parents | 2fc554ffbc28 |
children | b81b9d079515 |
line wrap: on
line source
/* Copyright (C) 2001-2012 Ross Lippert and Paul Kienzle Copyright (C) 2010 VZLU Prague This file is part of Octave. Octave is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. Octave is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Octave; see the file COPYING. If not, see <http://www.gnu.org/licenses/>. */ #ifdef HAVE_CONFIG_H #include <config.h> #endif #include <float.h> #include "CmplxSCHUR.h" #include "fCmplxSCHUR.h" #include "lo-ieee.h" #include "lo-mappers.h" #include "oct-norm.h" #include "defun.h" #include "error.h" #include "gripes.h" #include "utils.h" #include "xnorm.h" template <class Matrix> static void sqrtm_utri_inplace (Matrix& T) { typedef typename Matrix::element_type element_type; const element_type zero = element_type (); bool singular = false; // The following code is equivalent to this triple loop: // // n = rows (T); // for j = 1:n // T(j,j) = sqrt (T(j,j)); // for i = j-1:-1:1 // T(i,j) /= (T(i,i) + T(j,j)); // k = 1:i-1; // T(k,j) -= T(k,i) * T(i,j); // endfor // endfor // // this is an in-place, cache-aligned variant of the code // given in Higham's paper. const octave_idx_type n = T.rows (); element_type *Tp = T.fortran_vec (); for (octave_idx_type j = 0; j < n; j++) { element_type *colj = Tp + n*j; if (colj[j] != zero) colj[j] = sqrt (colj[j]); else singular = true; for (octave_idx_type i = j-1; i >= 0; i--) { const element_type *coli = Tp + n*i; const element_type colji = colj[i] /= (coli[i] + colj[j]); for (octave_idx_type k = 0; k < i; k++) colj[k] -= coli[k] * colji; } } if (singular) warning_with_id ("Octave:sqrtm:SingularMatrix", "sqrtm: matrix is singular, may not have a square root"); } template <class Matrix, class ComplexMatrix, class ComplexSCHUR> static octave_value do_sqrtm (const octave_value& arg) { octave_value retval; MatrixType mt = arg.matrix_type (); bool iscomplex = arg.is_complex_type (); typedef typename Matrix::element_type real_type; real_type cutoff = 0, one = 1; real_type eps = std::numeric_limits<real_type>::epsilon (); if (! iscomplex) { Matrix x = octave_value_extract<Matrix> (arg); if (mt.is_unknown ()) // if type is not known, compute it now. arg.matrix_type (mt = MatrixType (x)); switch (mt.type ()) { case MatrixType::Upper: case MatrixType::Diagonal: if (! x.diag ().any_element_is_negative ()) { // Do it in real arithmetic. sqrtm_utri_inplace (x); retval = x; retval.matrix_type (mt); } else iscomplex = true; break; case MatrixType::Lower: if (! x.diag ().any_element_is_negative ()) { x = x.transpose (); sqrtm_utri_inplace (x); retval = x.transpose (); retval.matrix_type (mt); } else iscomplex = true; break; default: iscomplex = true; break; } if (iscomplex) cutoff = 10 * x.rows () * eps * xnorm (x, one); } if (iscomplex) { ComplexMatrix x = octave_value_extract<ComplexMatrix> (arg); if (mt.is_unknown ()) // if type is not known, compute it now. arg.matrix_type (mt = MatrixType (x)); switch (mt.type ()) { case MatrixType::Upper: case MatrixType::Diagonal: sqrtm_utri_inplace (x); retval = x; retval.matrix_type (mt); break; case MatrixType::Lower: x = x.transpose (); sqrtm_utri_inplace (x); retval = x.transpose (); retval.matrix_type (mt); break; default: { ComplexMatrix u; do { ComplexSCHUR schur (x, std::string (), true); x = schur.schur_matrix (); u = schur.unitary_matrix (); } while (0); // schur no longer needed. sqrtm_utri_inplace (x); x = u * x; // original x no longer needed. ComplexMatrix res = xgemm (x, u, blas_no_trans, blas_conj_trans); if (cutoff > 0 && xnorm (imag (res), one) <= cutoff) retval = real (res); else retval = res; } break; } } return retval; } DEFUN (sqrtm, args, nargout, "-*- texinfo -*-\n\ @deftypefn {Built-in Function} {@var{s} =} sqrtm (@var{A})\n\ @deftypefnx {Built-in Function} {[@var{s}, @var{error_estimate}] =} sqrtm (@var{A})\n\ Compute the matrix square root of the square matrix @var{A}.\n\ \n\ Ref: N.J. Higham. @cite{A New sqrtm for @sc{matlab}}. Numerical\n\ Analysis Report No. 336, Manchester @nospell{Centre} for Computational\n\ Mathematics, Manchester, England, January 1999.\n\ @seealso{expm, logm}\n\ @end deftypefn") { octave_value_list retval; int nargin = args.length (); if (nargin != 1) { print_usage (); return retval; } octave_value arg = args(0); octave_idx_type n = arg.rows (); octave_idx_type nc = arg.columns (); if (n != nc || arg.ndims () > 2) { gripe_square_matrix_required ("sqrtm"); return retval; } if (nargout > 1) { retval.resize (1, 2); retval(2) = -1.0; } if (arg.is_diag_matrix ()) // sqrtm of a diagonal matrix is just sqrt. retval(0) = arg.sqrt (); else if (arg.is_single_type ()) retval(0) = do_sqrtm<FloatMatrix, FloatComplexMatrix, FloatComplexSCHUR> (arg); else if (arg.is_numeric_type ()) retval(0) = do_sqrtm<Matrix, ComplexMatrix, ComplexSCHUR> (arg); if (nargout > 1 && ! error_state) { // This corresponds to generic code // // norm (s*s - x, "fro") / norm (x, "fro"); octave_value s = retval(0); retval(1) = xfrobnorm (s*s - arg) / xfrobnorm (arg); } return retval; } /* %!assert (sqrtm (2*ones (2)), ones (2), 3*eps) ## The following two tests are from the reference in the docstring above. %!test %! x = [0 1; 0 0]; %! assert (any (isnan (sqrtm (x))(:))); %!test %! x = eye (4); x(2,2) = x(3,3) = 2^-26; x(1,4) = 1; %! z = eye (4); z(2,2) = z(3,3) = 2^-13; z(1,4) = 0.5; %! [y, err] = sqrtm (x); %! assert (y, z); %! assert (err, 0); ## Yes, this one has to hold exactly */