From 733756f4c20506d4316b0501e13948643a4bde14 Mon Sep 17 00:00:00 2001 From: Charlotte HECQUET Date: Fri, 15 Feb 2013 14:37:21 +0100 Subject: [PATCH] * Bug #12019 fixed - In the help of eigs function, NEV was unclear. Change-Id: I45f4be32e5540ec10e45f38b4dec868cf6182a5b --- scilab/CHANGES_5.4.X | 2 ++ scilab/modules/arnoldi/help/en_US/eigs.xml | 23 ++++++++++++++--------- 2 files changed, 16 insertions(+), 9 deletions(-) diff --git a/scilab/CHANGES_5.4.X b/scilab/CHANGES_5.4.X index e7a0a1d..bc4f65a 100644 --- a/scilab/CHANGES_5.4.X +++ b/scilab/CHANGES_5.4.X @@ -298,6 +298,8 @@ Bug fixes * Bug #12003 fixed - Fix a typo in the spreadsheet module. +* Bug #12019 fixed - In the help of eigs function, NEV was unclear. + * Bug #12022 fixed - ftuneq had a bad example. * Bug #12028 fixed - The pair drawlater/drawnow did not work as expected. diff --git a/scilab/modules/arnoldi/help/en_US/eigs.xml b/scilab/modules/arnoldi/help/en_US/eigs.xml index f545ebb..94ec88d 100644 --- a/scilab/modules/arnoldi/help/en_US/eigs.xml +++ b/scilab/modules/arnoldi/help/en_US/eigs.xml @@ -185,47 +185,52 @@ function y = A ( x ) - 'LM' compute the NEV largest in magnitude eigenvalues (by default). + 'LM' compute the k largest in magnitude eigenvalues (by default). - 'SM' compute the NEV smallest in magnitude eigenvalues (same as sigma = 0). + 'SM' compute the k smallest in magnitude eigenvalues (same as sigma = 0). - 'LA' compute the NEV Largest Algebraic eigenvalues, only for real symmetric problems. + 'LA' compute the k Largest Algebraic eigenvalues, only for real symmetric problems. - 'SA' compute the NEV Smallest Algebraic eigenvalues, only for real symmetric problems. + 'SA' compute the k Smallest Algebraic eigenvalues, only for real symmetric problems. - 'BE' compute NEV eigenvalues, half from each end of the spectrum, only for real symmetric problems. + 'BE' compute k eigenvalues, half from each end of the spectrum, only for real + symmetric problems. - 'LR' compute the NEV eigenvalues of Largest Real part, only for real non-symmetric or complex problems. + 'LR' compute the k eigenvalues of Largest Real part, only for real non-symmetric or + complex problems. - 'SR' compute the NEV eigenvalues of Smallest Real part, only for real non-symmetric or complex problems. + 'SR' compute the k eigenvalues of Smallest Real part, only for real non-symmetric or + complex problems. - 'LI' compute the NEV eigenvalues of Largest Imaginary part, only for real non-symmetric or complex problems. + 'LI' compute the k eigenvalues of Largest Imaginary part, only for real non-symmetric + or complex problems. - 'SI' compute the NEV eigenvalues of Smallest Imaginary part, only for real non-symmetric or complex problems. + 'SI' compute the k eigenvalues of Smallest Imaginary part, only for real non-symmetric + or complex problems. -- 1.7.9.5