MATLAB符号表达式的四则运算 2020年12月9日14:34:03MATLAB符号表达式的四则运算已关闭评论 MATLAB符号表达式的四则运算 符号表达式也与通常的算数式一样,可以进行四则运算。 例题 符号表达式的四则运算 >> syms a b x y >> fun1=sin(x)-cos(y) fun1 = sin(x)- cos(y) >> fun2=a-b fun2 = a - b >> fun1-fun2 ans = b - a - cos(y)+ sin(x) >> fun1*fun2 ans = -(a - b)*(cos(y)- sin(x)) 赞 0 分享