how to remove the error

조회 수: 1 (최근 30일)
Yusuf Muhammad Khan
Yusuf Muhammad Khan 2019년 11월 5일
답변: Urmila Rajpurohith 2019년 11월 12일
the error:
Error in fminbnd (line 233)
x= xf; fx = funfcn(x,varargin{:});
Error in untitled (line 5)
minr = fminbnd(@areaR,0,10),
my code:
%% Q11
clc;clear
global V
V = 10;
minr = fminbnd(@areaR,0,10),
minh = (3*V/(pi*minr^2)),
minA = areaR(minr),
r = 1:0.1:5;
A = areaR(r);
plot(r,A);
xlabel('r');
ylabel('Area');
Ua = minA+0.1*minA;
Lr = r(A < Ua & A >minA);
Range_r = max(Lr) - min(Lr)
  댓글 수: 1
Walter Roberson
Walter Roberson 2019년 11월 5일
You do not show us the complete error message and you do not show us the code for areaR

댓글을 달려면 로그인하십시오.

답변 (1개)

Urmila Rajpurohith
Urmila Rajpurohith 2019년 11월 12일
Hi Yusuf
As you mentioned
error in fminbnd (line 233)
x= xf; fx = funfcn(x,varargin{:};
probably you would have got error message saying: “User supplied objective function must return a scalar value.”
It means the variable “fx” accepts only scalar values.
In this case the “funfcn” is “@areaR” which is not resulting a scalar output.So try to modify the “areaR” function so that it will result a scalar output.

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by