23.07.2012 Views

MATLAB C++ Math Library Reference

MATLAB C++ Math Library Reference

MATLAB C++ Math Library Reference

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

luinc<br />

0luinc<br />

Purpose Incomplete LU matrix factorizations<br />

<strong>C++</strong> Prototype mwArray luinc(const mwArray &X, const mwArray &droptol=mwArray::DIN)<br />

mwArray luinc(mwArray *U,<br />

const mwArray &X,<br />

const mwArray &droptol=mwArray::DIN)<br />

mwArray luinc(mwArray *U,<br />

mwArray *P,<br />

const mwArray &X,<br />

const mwArray &droptol=mwArray::DIN)<br />

<strong>C++</strong> Syntax #include "matlab.hpp"<br />

<strong>MATLAB</strong><br />

Syntax<br />

246<br />

mwArray X, droptol, options; // Input argument(s)<br />

mwArray U, P; // Output argument(s)<br />

mwArray L; // Return value<br />

L = luinc(X,"0");<br />

L = luinc(&U,X,"0");<br />

L = luinc(&U,&P,X,"0");<br />

L = luinc(X,droptol);<br />

L = luinc(X,options);<br />

L = luinc(&U,X,options);<br />

L = luinc(&U,X,droptol);<br />

L = luinc(&U,&P,X,options);<br />

L = luinc(&U,&P,X,droptol);<br />

luinc(X,'0')<br />

[L,U] = luinc(X,'0')<br />

[L,U,P] = luinc(X,'0')<br />

luinc(X,droptol)<br />

luinc(X,options)<br />

[L,U] = luinc(X,options)<br />

[L,U] = luinc(X,droptol)<br />

[L,U,P] = luinc(X,options)<br />

[L,U,P] = luinc(X,droptol)

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!