matlab内置函数simplify使用方法

simplify(s)
对表达式进行化简

syms x y z 
f=cos(x)^2-sin(x)^2
s1 = simplify(f) 
s1 = cos(2*x) 

你可能感兴趣的:(matlab,笔记)