Borrar filtros
Borrar filtros

Help with Mex function

1 visualización (últimos 30 días)
Chris
Chris el 9 de Jul. de 2012
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.

Respuesta aceptada

James Tursa
James Tursa el 9 de Jul. de 2012
Editada: James Tursa el 9 de Jul. de 2012
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 comentarios
Chris
Chris el 10 de Jul. de 2012
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 el 10 de Jul. de 2012
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.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Cell Arrays en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by