Octave symbolic package nachinstallieren unter Ubuntu 21.04

Alles zur Open Source Alternative zu MatLab und alles um und zu MatLab und Simulink
Post Reply
User avatar
h3rb3rn
Administrator
Posts: 189
Joined: Mon 9. Feb 2015, 23:29

Octave symbolic package nachinstallieren unter Ubuntu 21.04

Post by h3rb3rn »

aktualisierte Fassung vom 05.08.2021

Quelle: https://askubuntu.com/questions/737746/ ... -in-octave

Code: Select all

sudo apt install liboctave-dev python3-sympy python3-pip
Als Standardbenutzer ausführen, nicht als root!

Code: Select all

pip install --user sympy

Code: Select all

pip install -forge symbolic


Octave starten und nachfolgende Befehle im Befehlsfenster ausführen (siehe Bild)

Quelle: https://octave.sourceforge.io/symbolic/ ... /real.html
Quelle: https://octave.sourceforge.io/symbolic/index.html
Quelle: https://sourceforge.net/p/octave/symbol ... ster/tree/

"Syms" installieren und aktivieren

Code: Select all

pkg install -forge symbolic
pkg load symbolic
"Syms" testen

Code: Select all

syms x
f = (sin(x/2))^3
diff(f, x)
Syms installieren in Octave
Syms installieren in Octave


Eine Übersicht der verfügbaren Plugin Packages für Octave findet man unter https://octave.sourceforge.io/packages.php und für den manuellen Download der Link unter https://sourceforge.net/projects/octave/files/
Post Reply