0

方程是:

在此处输入图像描述

其中ab是常数并且都等于0.0130

这是我正在使用的代码:

% Solving the equation for zero.
f = @(theta) ((a+b).*theta)./((theta.^2)-(a.*b)) - tan(theta);  % Notice the dots (.)

% Now plot it to get an idea of where the zeros are.
theta = 0:1:100;
for i=1:length(theta)
    hold on
    plot(theta(i),f(theta(i)),'-o')  % Look for the zeros
end

% Now find the roots.
cnt = 1;
for ii = [0,2,50]  % This vector has the guesses.
    rt(cnt) = fzero(f,ii); % Pass each guess to FZERO.
    cnt = cnt + 1;
end

这是我得到的错误:

??? Operands to the || and && operators must be convertible to
logical scalar values.

Error in ==> fzero at 323
    elseif ~isfinite(fx) || ~isreal(fx)

Error in ==> HW4 at 52
    rt(cnt) = fzero(f,ii); % Pass each guess to FZERO.

我想得到 \theta 的第一个解决方案。谢谢。

4

1 回答 1

0

这段代码对我有用,没有错误(我写了值 0.0130 而不是 a 和 b)。检查您没有在代码中使用其他变量名,或者没有清除某些变量......

于 2012-10-30T22:54:06.430 回答