up vote 3 down vote favorite
1
share [g+] share [fb]

I'm wondering if anyone has a 64-bit build of Octave? If so, do you know if it has full access to the 64 bit memory range -- i.e., can you create a matrix which uses up more than 4GB of memory?

Thanks,

Ben

link|improve this question

feedback

2 Answers

I don't know if that helps you but according to this: http://wiki.octave.org/wiki.pl?EnableLargeArrays, support over 2 GB of memory for array is experimental.

link|improve this answer
feedback

I realize the question is old but it's still quite relevant. On a Mac yes, I used homebrew and include an example of a matrix over 4GB below. Currently this procedure works:

Install homebrew and then run the following in a terminal window.

brew install hg
brew install --use-gcc --HEAD graphicsmagick
brew install gfortran
brew install --use-gcc gnuplot
brew install octave

Then add this to ~/.octaverc:

setenv GNUTERM 'x11'
graphics_toolkit("gnuplot")

Enjoy your 64-bit octave compile!

octave:1> a = zeros(500*2^10+1,2^10);
octave:2> whos
Variables in the current scope:

  Attr Name        Size                     Bytes  Class
  ==== ====        ====                     =====  ===== 
        a      512001x1024              4194312192  double
        ans         1x50                       498  cell

Total is 524289074 elements using 4194312690 bytes
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.