Halfway symbolic halfway numeric evaluation on wxMAXIMA (Berns Buenaobra)
Subject: Halfway symbolic halfway numeric evaluation on wxMAXIMA (Berns Buenaobra)
From: Barton Willis
Date: Thu, 18 Apr 2013 12:41:01 +0000
You might like to try making local assignments; for example
(%i3) exp(x+y), x : 5, y : -6;
(%o3) %e^(-1)
Another possibility is to collect substitutions into a list; something like
(%i6) sub : [x=5,y=-6]$
(%i7) subst(sub, exp(x+y));
(%o7) %e^(-1)
--Barton