matlab2c icon indicating copy to clipboard operation
matlab2c copied to clipboard

c++实现的matlab函数,用于数据分析

Results 1 matlab2c issues
Sort by recently updated
recently updated
newest added

return Matrix r(1,num,date_temp); 这个date_temp没有释放 建议如下修改: Matrix r(1,num,date_temp); delete [] date_temp; date_temp = 0;