用matlab求解三角方程

时间:2014-01-30 04:15:38

标签: matlab trigonometry

如何在Matlab中解决这个等式?

      beta=0:10:90
      sin(tetha)+(3*cos(tetha)-1)*cot(beta)=0

解决tetha

我使用了解决功能但没有得到任何答案。

1 个答案:

答案 0 :(得分:2)

查看fzero

beta = 0:10:90
for ii = 1:numel(beta)
    %% insert fzero function here
end

  Columns 1 through 7
   -0.9273    0.8777   -0.6248   -0.2930    0.8045   -0.9177    0.9141
  Columns 8 through 10
   -0.7869    0.2148    0.6605