#! mavscript --jasymca TEMPLATE.txt
# oder / or
#! mavscript -j TEMPLATE.txt


mavscript --jasymca
-------------------

Eingabe / input:
Länge / length l = 10.30 m
Breite / width b =  2.37 m
Höhe / hight   h =  4.80 m

Ausgabe / output:
Ausgabe mit 4 signifikanten Stellen / output with 4 significant digits 
Das Volumen beträgt V = l*b*h --> 117.2 m³
Twice the volume is 234.3 m³

Das Objekt ist länger als breit.
The object is rather high.

Ein Würfel mit dem selben Volumen 117.2 m³ hat die Seitenlänge
A cube of that volume has the side length
a = V^(1/3) = 4.893 m.
oder / or
syms x; X = solve(x^3 - V, x); float(X) --> 4.893


# Anmerkungen / Notes
# -------------------
# Jasymca ist ein Computer-Algebra-System, deren Syntax sich an Octave anlehnt.
# Das Handbuch zu Jasymca ist im Verzeichnis INFO/jasymca enthalten.
# 
# Jasymca is a computer-algebra-system. Its syntax is similar to Octave.
# The Jasymca manual is included in the directory INFO/jasymca.
