-
-
Notifications
You must be signed in to change notification settings - Fork 95
Closed
Labels
Description
For example load a Symja package VectorAnalysis.m
and run the DotProduct
defined in the package:
org.matheclipse.core.eval.MMAConsole
with arguments:
-d matheclipse-core/src/test/resources/mma/VectorAnalysis.m -c DotProduct({a,b,c},{d,e,f})
Print this result to the terminal and exit the app:
a*d+b*e+c*f
For example load a MMA package VectorAnalysis.m
and run the DotProduct
defined in the package:
org.matheclipse.core.eval.MMAConsole
with arguments:
-d matheclipse-core/src/test/resources/mma/VectorAnalysis.m -c DotProduct[{a,b,c},{d,e,f}]
Print this result to the terminal and exit the app:
a*d+b*e+c*f
Program arguments are:
-c or -code <command> run the command
-d or -default <filename> use given textfile for an initial package script