C++ Math Library Reference | ![]() ![]() |
C++ Prototype
mwArray normest(const mwArray &S); mwArray normest(const mwArray &S, const mwArray &tol); mwArray normest(mwArray *count, const mwArray &S); mwArray normest(mwArray *count, const mwArray &S, const mwArray &tol);
C++ Syntax
#include "matlab.hpp" mwArray S, tol; // Input argument(s) mwArray count; // Output argument(s) mwArray nrm; // Return value nrm=
normest(S); nrm
=
normest(S,tol); nrm = normest(&count,S); nrm = normest(&count,S,tol);
MATLAB Syntax
nrm=
normest(S) nrm
=
normest(S,tol) [nrm,count] = normest(...)
See Also
normest
Calling Conventions![]() | norm | now | ![]() |