C++ Math Library Reference | ![]() ![]() |
Condition number with respect to eigenvalues
C++ Prototype
mwArray condeig(const mwArray &A); mwArray condeig(mwDoubleMatrix *D, mwArray *s, const mwArray &A);
C++ Syntax
#include "matlab.hpp" mwArray A; // Input argument(s) mwArray D, s; // Output argument(s) mwArray c, V; // Return value c = condeig(A); V = condeig(&D,s,A);
MATLAB Syntax
c = condeig(A) [V,D,s] = condeig(A)
See Also
condeig
Calling Conventions![]() | cond | condest | ![]() |