-<?xml version="1.0" encoding="utf-8"?>
+<?xml version="1.0" encoding="utf-8"?>
<!--
* Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
* Copyright (C) 2012 - Scilab Enterprises - Adeline CARNIS
<synopsis>
d = eigs(A [,B [,k [,sigma [,opts]]]])
[d, v] = eigs(A [,B [,k [,sigma [,opts]]]])
-
+
d = eigs(Af, n [,B [,k [,sigma [,opts]]]])
[d, v] = eigs(Af, n [,B [,k [,sigma [,opts]]]])
</synopsis>
msgstr ""
#
-# File: macros/eigs.sci, line: 820
-#, c-format
-msgid ""
-"%s: Wrong type for input argument #%d: a empty matrix or full or sparse "
-"square matrix expected.\n"
-msgstr ""
-
-#
# File: macros/eigs.sci, line: 878
#, c-format
msgid "%s: Wrong dimension for input argument(s) #%d: a string expected.\n"
//Third variable B :
//*************************
if((typeof(B) <> "constant") & (typeof(B) <> "sparse"))
- error(msprintf(gettext("%s: Wrong type for input argument #%d: aa empty matrix or full or sparse square matrix expected.\n"), "feigs", 3));
+ error(msprintf(gettext("%s: Wrong type for input argument #%d: An empty matrix or full or sparse square matrix expected.\n"), "feigs", 3));
end
[mB, nB] = size(B);