필터 지우기
필터 지우기

Help with Mex function

조회 수: 1 (최근 30일)
Chris
Chris 2012년 7월 9일
Hello, I'm having trouble getting a mex function to work. I think I've narrowed down the problem but anytime I try to fix anything Matlab shuts down.
I want to send a nested struct through a mex file myvar.myfield.mysubfield, where subfield is a 3-d position vector. I want to do mymexfunc(myvar).
mwPointer mxGetField
mwPointer mxGetPr
mwPointer mxcreatedoublematrix
mwIndex index
mwpointer var_ptr, fd_ptr, sfd_ptr
var_ptr = mxgetpr(prhs(1))
fd_ptr = mxgetfield(var_ptr,1,'myfield')
sfd_ptr = mxgetfield(fd_ptr,1,'mysubfield')
myvar%myfield%mysubfield = fpgetpr(sfd_ptr)
copy mxcopyptrtoreal8(sfd_ptr,myvar%myfield%mysubfield,size)
Matlab crashes when I try to do this and I wanted to know if anyone can see what I'm doing wrong.

채택된 답변

James Tursa
James Tursa 2012년 7월 9일
편집: James Tursa 2012년 7월 9일
mwPointer mxGetField
mwPointer mxGetPr
mwPointer mxcreatedoublematrix
mwIndex index
mwpointer var_ptr, fd_ptr, sfd_ptr
fd_ptr = mxgetfield(prhs(1),1,'myfield') ! Result is mxArray pointer
sfd_ptr = mxgetfield(fd_ptr,1,'mysubfield') ! Result is mxArray pointer
var_ptr = mxgetpr(sfd_ptr) ! Result is real*8 pointer
copy mxcopyptrtoreal8(var_ptr,myvar%myfield%mysubfield,size)
I would use different names for the "size" and "index" variables, since those are names of Fortran intrinsic functions.
  댓글 수: 7
Chris
Chris 2012년 7월 10일
Thanks James, I didn't see that. The single nested struct now works but not the mex calling for multiple values like above. I think it has to do with the size input. Should it be as follows?
!this works for the single nested struct mex
m = mxgetm(sfd_ptr)
n = mxgetn(sfd_ptr)
size1 = m*n
!but it seems like I should use the real*8 pointer
m = mxgetm(var_ptr)
n = mxgetn(var_ptr)
size1 = m*n
They both don't work for the multi nested struct values and make matlab crash.
Chris
Chris 2012년 7월 10일
I figured it out James, it was crashing because I had the wrong index value for the mxGetField. I thought I needed index=2 for myfield2 but I used 1 for them all and it works. Thanks for all your help.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Cell Arrays에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by