Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

How can I fix my error with the passing a function to another fuction?

조회 수: 1 (최근 30일)
Evan Keating
Evan Keating 2017년 4월 26일
마감: MATLAB Answer Bot 2021년 8월 20일
Im working on a function that that takes 2 points a and b and a function f and out puts a varible and it wont send the value back.
f = @(x) exp^(x);
a = 1;
b = 2;
v = GaussQuadrature(f,a,b)
function value = GaussQuadrature(f,a,b)
ba = (b-a)/2;
ab = (a+b)/2;
value = ab*(f(ba*(-1/(sqrt(3)))+ab)+f(ba*(1/(sqrt(3)))+ab));
end
Then it is return these errors
Error in @(x)exp^(x)
Error in GaussQuadrature (line 4)
value = ab*(f(ba*(-1/(sqrt(3)))+ab)+f(ba*(1/(sqrt(3)))+ab));
Error in Hw10Q3 (line 4)
v = GaussQuadrature(f,a,b)

답변 (1개)

Andrew Newell
Andrew Newell 2017년 4월 26일
The first line should be
f = @(x) exp(x);

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by