0

Which do you consider is the best language to processing (getting statistical results) of analysing some GB of data information, taking into account these limitations:

  • Open source code.
  • Data can be analyzed in matrixes.
  • Developing time limited.
  • Cost of processing also limited.

For, example, Octave, Fortran, C++, C, Python, etc.

tshepang
  • 12,111
  • 21
  • 91
  • 136
Luis Andrés García
  • 5,852
  • 10
  • 43
  • 57

2 Answers2

2

Whichever language you are most familiar with. All of those languages have very performant open source options for doing big-matrix math.

hexist
  • 5,151
  • 26
  • 33
1

I would look for Python with NumPy extensions.

linello
  • 8,451
  • 18
  • 63
  • 109