Using integral to define a function
조회 수: 4 (최근 30일)
이전 댓글 표시
So I'm trying to define a function which has an integral inside.
Below is a simplified version of the function with the same error message: Unrecognized function or variable 'E'.
What I don't get is since variable E goes away after integral, shouldn't there be no reason for me to define it?
Also, how could this problem be resolved?
Thanks in advance.
result(0)
function test_integral = result(V)
test_integral = integral( @temp, E, -1, 1);
function tempf = temp(E)
tempf = E.*V;
end
end
댓글 수: 0
채택된 답변
Dyuman Joshi
2023년 11월 24일
편집: Dyuman Joshi
2023년 11월 24일
Remove the E from the integral() call, as it is not required.
result(2)
result(4)
result(6)
function test_integral = result(V)
test_integral = integral(@temp, -1, 1);
function tempf = temp(E)
tempf = E.*V;
end
end
댓글 수: 0
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!