You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What is the exact purpose on this method? This is similar to substitute a variable by 1:
On a binary expression S*cos(t):
e :=KEBinaryExpressionnewop: #*;
leftHandSide: (KEVariablenewsymbol:#S);
rightHandSide: (KEMathFunctionExpressionnewfunctionName:#cos;
functionExpr: (KEVariablenewsymbol:#t)).
n := e removeVariable: (KEVariablenewsymbol:#S).
returns cos(t).
except on a single variable:
e :=KEVariablenewsymbol:#S.
n := e removeVariable: (KEVariablenewsymbol:#S).
n is nil is this example.
Why do we need this?
The text was updated successfully, but these errors were encountered:
What is the exact purpose on this method? This is similar to substitute a variable by 1:
On a binary expression S*cos(t):
returns cos(t).
except on a single variable:
n is nil is this example.
Why do we need this?
The text was updated successfully, but these errors were encountered: