views:

65

answers:

1

Hi,

Does anyone know of a Linux command that reads a linear system of equations from its standard input and writes the solution (if exists) in its standard output?

I want to do something like this:

generate_system | solve_system
+1  A: 

You can probably write your own such command using this package.

pavanlimo