フィルターのクリア

I want to find R, but it says I have error on using fzero

1 回表示 (過去 30 日間)
kanghao he
kanghao he 2016 年 12 月 6 日
コメント済み: Roger Stafford 2016 年 12 月 6 日
a=2.1.*10.^-3;
b=2.9.*10.^-4;
c=8.7.*10.^-8;
T=322 %Kelvins
resistance=@(R)(T(a+b.*log(R)+c.*(log(R)).^3)); %ohm
solution=fzero(resistance,200)
  1 件のコメント
Roger Stafford
Roger Stafford 2016 年 12 月 6 日
You don’t need to use ‘fzero’ in this equation. First solve the cubic equation for log( R ) using ‘roots’, and then solve for R using the ‘exp’ function, assumed your logs are natural logs, or powers of ten assuming the logs are base ten.

サインインしてコメントする。

回答 (1 件)

Steven Lord
Steven Lord 2016 年 12 月 6 日
Your function is:
resistance=@(R)(T(a+b.*log(R )+c.*(log(R )).^3));
What is element (a+b.*log(R )+c.*(log(R )).^3) of the array T? Does that even evaluate to an integer value suitable for use as an index into an array? [That seems highly unlikely given your values of a, b, and c.]
I think you forgot an arithmetic operation (I'm guessing a minus sign) in your function.
  3 件のコメント
Steven Lord
Steven Lord 2016 年 12 月 6 日
No, you did post them. I recommend you go back and check that you've correctly written the function you intend to solve, because I'm pretty sure you didn't copy it into MATLAB correctly based on the plots I made.
Walter Roberson
Walter Roberson 2016 年 12 月 6 日
Steven is pointing out that you have T(expression) and that in MATLAB that is an indexing operation. Perhaps you meant T*(expression) or T-(expression)

サインインしてコメントする。

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by