| MATLAB C++ Math Library | Search  Help Desk |
| deconv | See Also |
Deconvolution and polynomial division
C++ Prototype
mwArray deconv(mwArray *r, const mwArray &v, const mwArray &u); mwArray deconv(const mwArray &v, const mwArray &u);
C++ Syntax
#include "matlab.hpp" mwArray v, u; // Input argument(s) mwArray r; // Output argument(s) mwArray q; // Return value q = deconv(&r,v,u); q = deconv(v,u);
MATLAB Syntax
[q,r] = deconv(v,u)
See Also
deconv Calling Conventions