符号极限计算,需要的数值

Symbolic limit calculation, numeric value desired

我正在尝试计算内部函数的极限运算。这是我所做的:

x = 0;
f = (cos(x)*cos(h/2)*sin(h/2))/(h/2) - (sin(x)*sin(h/2)*sin(h/2))/(h/2);
limit(f,h,0)
ans =
1

limit(f,h,1)
ans =
2*cos(1/2)*sin(1/2)

我想看看2*cos(1/2)*sin(1/2)的数值是多少。我如何获得这个值?

您可以使用 double 计算最终表达式:

double(limit(f,h,1))
ans =
    0.8415

limit是符号函数,所以输出符号函数。您可以使用 double(或 single 或您想要的任何数字类型)转换为数字。