在使用mosek优化库的时候,使用http://docs.mosek.com/7.0/capi/MSK_getxx_.html的
- MSKrescodee MSK_getxx (
- MSKtask_t task,
- MSKsoltypee whichsol,
- MSKrealt * xx);
来读入xx以得到最优解对应的变量值。
我希望使用Eigen::VectorXd xx, 在xx处读入xx.data(),会出现memory.h报错的问题
解决方案:使用double *tmp_x = (double*)calloc(N_ * N_, sizeof(double));和MSK_getxx(task_,MSK_SOL_ITG, tmp_x);