如何在Octave中打印symfunc,使其看起来像是人类类型的,而不是人类书写的



我正在尝试将拉普拉斯变换应用于符号函数,但它看起来不像我想要的。

; 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

相关内容

  • 没有找到相关文章

最新更新