Is it possible return cell array that contains one instance in several cells?
问题 I write some mex function and have to return huge array of strings. I do this as following: mxArray * array = mxCreateCellMatrix(ARRAY_LEN, 1); for (size_t k = 0; k < ARRAY_LEN; ++ k) { mxArray *str = mxCreateString("Hello"); mxSetCell(array, k, str); } prhs[0] = array; However, since the string has always same value, I would like to create only one instance of it. like mxArray * array = mxCreateCellMatrix(ARRAY_LEN, 1); mxArray *str = mxCreateString("Hello"); for (size_t k = 0; k < ARRAY_LEN