how to remove the error

1 view (last 30 days)
Yusuf Muhammad Khan
Yusuf Muhammad Khan on 5 Nov 2019
Answered: Urmila Rajpurohith on 12 Nov 2019
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 Comment
Walter Roberson
Walter Roberson on 5 Nov 2019
You do not show us the complete error message and you do not show us the code for areaR

Sign in to comment.

Answers (1)

Urmila Rajpurohith
Urmila Rajpurohith on 12 Nov 2019
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.

Categories

Find more on Startup and Shutdown in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!