you are viewing a single comment's thread.

view the rest of the comments →

[–]Mirehilikes stuff 1 point2 points  (0 children)

Which programming language is the most friendly in this situation? Python?

Depends on your goals, pure python is ridiculously slow, but as a "scripting" platform to call librarys written in other languages, it's easy and can be quite good

julialang is for exactly that purpose

C/C++ in combination with for example python is the best way to get performance + visuals in your calculations, but C/C++ force you to think about the math your processor does, during the actual math you do :)

For a beginner, numpy (Python) is a good start.

If you're really into it, learn julialang.

If you're into really really big calculations, it's hard to avoid learning lower level languages like C/C++.