我一直在尝试将一个函数与 matlab 集成,但它一直给我带来奇怪的结果。
>> syms w x;
>> w = 0.8335*(cosh(52.42*x)-cos(52.42*x)-sinh(52.42*x)+sin(52.42*x));
>> int(w, 0, 1)
>> (1667*sinh(2621/50))/104840 ... /*Some long expression*/
它没有给我一些最终的数值,而是与sinh(2621/50)
. 我是否使用了错误的功能?任何帮助都会很棒。