在maple中怎么把把一个方程代入非线性偏微分方程中算

2026年09月26日 12:37
有1个网友回答
网友(1):

用赋值表达式,例如
f := ->a*x^2+b*x+c
x -> a x² + b x + c
a := 1; b := 1; c := 1; f(2);
7