필터 지우기
필터 지우기

How do I clear a temporary PTR Struct in FORTRAN called my Matlab

조회 수: 1 (최근 30일)
Rick
Rick 2014년 10월 7일
댓글: Rick 2014년 10월 8일
I have a Matlab file that is calling a mexed FORTRAN routine.... I need to clear out the temporary structures before it returns to Matlab.
Here is how I am creating the temp structure:
mwPointer tmp_strct
tmp_strct = mxCreateStructureMatrix(m,n,fieldnames)
THen I use it with the mxSetFieldByName and mxDuplicateArray functions to load the outputs of plhs. It works fine.......... However, the reason I ask is because i think its retaining memory....ie.... memory leak. :-(
I sometimes get a low memory window pop-up. I am using Matlab 2012b and intel compiler on Windows. Can this tmp_strct be cleared BEFORE returning to matlab.
Can I aleviate this problem ??

채택된 답변

Geoff Hayes
Geoff Hayes 2014년 10월 7일
Rick - try using mxDestroyArray to free the memory allocated by the mxCreateStructureMatrix function.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Fortran with MATLAB에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by