C++ Math Library Reference | ![]() ![]() |
Incomplete LU matrix factorizations
C++ Prototype
mwArray luinc(const mwArray &X, const mwArray &droptol=mwArray::DIN) mwArray luinc(mwArray *U, const mwArray &X, const mwArray &droptol=mwArray::DIN) mwArray luinc(mwArray *U, mwArray *P, const mwArray &X, const mwArray &droptol=mwArray::DIN)
C++ Syntax
#include "matlab.hpp" mwArray X, droptol, options; // Input argument(s) mwArray U, P; // Output argument(s) mwArray L; // Return value L = luinc(X,"0"); L = luinc(&U,X,"0"); L = luinc(&U,&P,X,"0"); L = luinc(X,droptol); L = luinc(X,options); L = luinc(&U,X,options); L = luinc(&U,X,droptol); L = luinc(&U,&P,X,options); L = luinc(&U,&P,X,droptol);
MATLAB Syntax
luinc(X,'0') [L,U] = luinc(X,'0') [L,U,P] = luinc(X,'0') luinc(X,droptol) luinc(X,options) [L,U] = luinc(X,options) [L,U] = luinc(X,droptol) [L,U,P] = luinc(X,options) [L,U,P] = luinc(X,droptol)
See Also
luinc
Calling Conventions![]() | lu | magic | ![]() |