フィルターのクリア

Using integral to define a function

1 回表示 (過去 30 日間)
DONGUK KIM
DONGUK KIM 2023 年 11 月 24 日
編集済み: Dyuman Joshi 2023 年 11 月 24 日
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

採用された回答

Dyuman Joshi
Dyuman Joshi 2023 年 11 月 24 日
編集済み: Dyuman Joshi 2023 年 11 月 24 日
Remove the E from the integral() call, as it is not required.
Refer to the documentation of integral to know more about the syntax of the function.
result(2)
ans = -1.1102e-16
result(4)
ans = -2.2204e-16
result(6)
ans = -3.3307e-16
function test_integral = result(V)
test_integral = integral(@temp, -1, 1);
function tempf = temp(E)
tempf = E.*V;
end
end

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeProgramming についてさらに検索

製品


リリース

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by