C++ Math Library Reference | ![]() ![]() |
C++ Prototype
mwArray conv2(const mwArray &A, const mwArray &B); mwArray conv2(const mwArray &hcol, const mwArray &hrow, const mwArray &A); mwArray conv2(const mwArray &hcol, const mwArray &hrow, const mwArray &A, const mwArray &shape);
C++ Syntax
#include "matlab.hpp" mwArray shape; // String array(s) mwArray A, B, hcol, hrow; // Input argument(s) mwArray C; // Return value C = conv2(A,B); C = conv2(hcol,hrow,A); C = conv2(A,B,shape
); C = conv2(hcol,hrow,A,shape
);
MATLAB Syntax
C = conv2(A,B)
C = conv2(hcol,hrow,A)
C = conv2(...,'shape
')
See Also
conv2
Calling Conventions![]() | conv | corrcoef | ![]() |