I am writing a mex function using cpp compiler. My problem is whenever I use this line:
memset(*(new_gammas+i), 0, llrlength*sizeof(double));
I am getting from compiler:
"memset" identifier not found.
Is it because of the lack of any specific header file or the code is wrong for c++?
memset is declared in
<cstring>
and is in thestd
namespace.