・ Xyz = -234 ・ X + y + z = 20 ・ 5x - y + 2z = 85
(Umgebung: Ubuntu12.04LTS)
$ sudo apt-get install ipython-notebook
$ sudo apt-get install python-matplotlib python-scipy python-pandas python-sympy python-nose
$ ipython
Geben Sie in der IPython-Shell Folgendes ein:
from sympy import *
x, y, z = symbols('x y z')
init_printing()
solve([x * y * z + 234, x + y + z - 20, 5 * x - y + 2 * z - 85], [x, y, z])
Schreiben Sie für die Formel xyz = -234 x * y * x + 234.
Wenn init_printing () beschrieben wird (das Bild wird aus Layoutgründen in 3 Teile geteilt):
Wenn Sie init_printing () nicht schreiben:
[(-9*17**(1/2)/4 + 39/4, -9*17**(1/2)/4 - 21/4, 31/2 + 9*17**(1/2)/2),
(13, -2, 9), (9*17**(1/2)/4 + 39/4, -21/4 + 9*17**(1/2)/4, -9*17**(1/2)/2 + 31/2)]
Gehen Sie zur folgenden Website. ・ SymPy Live http://live.sympy.org/
Sie können Sympy verwenden, um Berechnungen von der Konsole aus durchzuführen, genau wie bei iPython.
Recommended Posts