找不到memset标识符

时间:2017-01-09 18:06:16

标签: c++ mex

我正在使用cpp编译器编写一个mex函数。我的问题是每当我使用这一行时:

memset(*(new_gammas+i), 0, llrlength*sizeof(double));

我从编译器得到: 的 "memset" identifier not found. 是因为缺少任何特定的头文件或者c ++的代码是错误的吗?

1 个答案:

答案 0 :(得分:0)

memset在<cstring>中声明,位于std名称空间。