フィルターのクリア

I code a bisection method on MATLAB app designer, how can I fix this error ?

15 ビュー (過去 30 日間)
Anne
Anne 2023 年 11 月 30 日
移動済み: Walter Roberson 2024 年 7 月 3 日 22:33
typefunction = app.TypefunctionEditField.Value;
a = app.aEditField.Value
b = app.bEditField.Value
run = app.RunButton.ButtonPushedFcn
error= app.errorEditField.Value
fxi=str2func(['@(x)'typefunction]);
number_of_iterations=0;
if fxi(a)*fxi(b)>0
result=NaN;
return
end
if fxi(a)==0
result=a;
return
elseif fxi(b)==0
result=b;
return
end
while(abs(a-b)>=error)
result=(a+b)/2;
if fxi(a)*fxi(result)<0
b=result;
else
a=result;
end
number_of_iterations=number_of_iterations+1;
end
  1 件のコメント
shachinee
shachinee 2024 年 7 月 3 日 13:27
移動済み: Walter Roberson 2024 年 7 月 3 日 22:33
hey can i get the full coding of it

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

回答 (1 件)

Walter Roberson
Walter Roberson 2023 年 11 月 30 日
fxi=str2func(['@(x)'typefunction]);
You need a space or comma, like
fxi=str2func(['@(x)' typefunction]);
  2 件のコメント
Anne
Anne 2023 年 11 月 30 日
i fix it but it still have same error :(
Walter Roberson
Walter Roberson 2023 年 11 月 30 日
I copied your posted code into the editor, and added in the one space that I indicate, and that cleared up the error message. There are still warnings recommending that you add in semi-colons to prevent unnecessary output, but the error is gone just by putting in that one space.

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

カテゴリ

Help Center および File ExchangeEnvironment and Settings についてさらに検索

製品


リリース

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by