matlab求定积分怎么不运行结果啊

我采用int函数求解定积分,是哪里出错了吗,怎么运行不出结果,求哪位解惑 ?
运行结果和我输入的一样
前面也利用syms定义了四个参数了
F = int(cos(phi - theta1/2 - theta2/2 + theta)/cos(theta1/2 + theta2/2 - theta)^2,theta,[theta1,theta2])

可以换个思路,先求不定积分,在求定积分

syms phi theta1 theta2 theta
F = int(cos(phi - theta1/2 - theta2/2 + theta)/cos(theta1/2 + theta2/2 - theta)^2,theta);
F1 = subs(F,theta,theta1);
F2 = subs(F,theta,theta2);
F = F1-F2;