HN user

sintesoro

7 karma
Posts0
Comments5
View on HN
No posts found.

I would find interesting something related. Creating a platform for defining the next stage of an idea and how to code it in software. A collaborative remote project.

Python is good, you could also consider Maxima.

A single example:

f(x):= x^2+3x+7;

Maxima provides: Symbolic computation, blas and laplack integration for numeric algebra, 500 pages manual in several languages, a complete library for statistics, differential equation, calculus, series. Graphics with matplotllib. Also maxima language is not much complicate that python:

for i in range(10):print ii versus for i:0 thru 9 do print ii;

[i2 for i in range(10)] versus makelist(i*2,i,0,9)

But Matlab libraries are greater than python and maxima.