How to integrate anonymous functions

Hello,
I am trying to integrate my area function A(x) in my code, but it keeps telling me I need to put a "handle" on it. I thought putting bounds would be sufficient, I guess I was wrong. If you can help me, great, below is a a copy of my code. An image of what I am trying to integrate is in the attachments.
Code:
% Calculus way (True Values)
E = 30*10^6;
F = 300;
SLOPE = -0.25/6;
D = @(x) (SLOPE*x)+1; % This is the function of Diameter
A = @(x) (pi/4)*(D(x))^2; % This is the function of Area
True_Area = integral(F/(E*A),0,6)

답변 (2개)

Guillaume
Guillaume 2018년 4월 24일

1 개 추천

You cannot combine numbers (F and E) and functions with mathematics operations. You need to create a new function:
True_Area = integral( @(x) F./(E*A(x)), 0, 6);
The @(x) F./(E*A(x)) is this new function.

댓글 수: 2

Robert  Flores
Robert Flores 2018년 4월 24일
I copied your script and it still didn't run, sorry for the late response.
Robert  Flores
Robert Flores 2018년 4월 25일
True_Extension = integral(EXT_FUN,0,6,'ArrayValued',true);
This is what worked

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

John D'Errico
John D'Errico 2018년 4월 25일
편집: John D'Errico 2018년 4월 25일

0 개 추천

It seems you understand how to form A(x), from D(x). That is, you knew to use D(x) in there, when you wrote the function handle A. You also know to use the .^ operator.
So why did you forget everything you knew when you wrote the call to integral? :)
True_Area = integral(@(x) F./(E*A(x)),0,6)
True_Area =
0.000101859163578813
You need to form an anonymous function handle, evaluating A(x) inside it. And since you are dividing that into a constant, and since x will be a vector when called by integral, you need to use the ./ operator.
To verify the result:
syms x
D = SLOPE*x+1;
A = (pi/4)*D^2;
True_Area = int(F/(E*A),0,6)
True_Area =
1/(3125*pi)
vpa(True_Area)
ans =
0.00010185916357881301489208560855841

카테고리

도움말 센터File Exchange에서 Programming에 대해 자세히 알아보기

질문:

2018년 4월 24일

편집:

2018년 4월 25일

Community Treasure Hunt

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

Start Hunting!

Translated by