fortran matlab

2 次查看(过去 30 天)
Michael
Michael 2012-6-18
Hi,
I am using intel fortran in matlab. While converting an existing matlab function to fortran, I get the following error message after successful compiling the file (upon the attempt to run my code): "MATLAB has attempted to use more stack space than is available. If a mex file was in use check for large local variables or infinite recursion"
How can I fix this? I am moving large arrays from matlab to fortran but I need to do that. Is there any way to get it to work? Thank you
Michael

采纳的回答

James Tursa
James Tursa 2012-6-18
Stack space typically comes from local variables and intermediate calculations. Try to avoid these for large variables. Use allocatable variables instead, which come from the heap. E.g., this causes the memory for x to come from the stack:
subroutine foo
real*8 x(10000000)
whereas this will cause the memory for x to come from the heap (generally much larger than the stack):
subroutine foo
real*8, allocatable :: x(:)
allocate(x(10000000))
:
deallocate(x)
If an intermediate calculation is causing a stack overflow, e.g. a large matrix calculation, try to break it down into old F77 style do-loops instead.
  1 个评论
Michael
Michael 2012-6-18
Thanks a lot James, that solved my problem!

请先登录,再进行评论。

更多回答(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