我正在尝试将拉普拉斯变换应用于符号函数,但它看起来不像我想要的。
; file.m
syms t
f(t) = (3*t - 2) * cos(t);
laplace(f)
输出
ans = (sym)
2 / 2
3*s - 2*s*s + 1/ - 3
-----------------------
2
/ 2
s + 1/
我想要
ans = (sym) (3*2^2 - 2*s*(s^2 + 1) - 3)/(s^2 + 1)^2
sympref display flat
请参见此处:https://octave.sourceforge.io/symbolic/function/sympref.html
也可能有用:https://octave.sourceforge.io/symbolic/function/@sym/pretty.html