フィルターのクリア

Need help with an integral with variable bounds

2 ビュー (過去 30 日間)
Tim Stark
Tim Stark 2018 年 12 月 1 日
コメント済み: madhan ravi 2018 年 12 月 1 日
Hey guys, I need help with an integral using variable bounds.
I Have a certain function:
f = @(t) [function]
And I want to Integrate this function with respect to t, so:
Nf = integral(f,x,y)
However, x and y are variables:
i = 1:35040
x = (1/(24*4))*(i-1)
y = (1/(24*4))*i
I want to store the results of these integration in a matrix:
M = [Nf(1), NF(2), .., NF(35040)]
A loop function does not seem to work:
for i=1:35040
f = @(t) [function]
x = (1/(24*4))*(i-1)
y = (1/(24*4))*i
Nf = integral(f,x,y)
end

採用された回答

madhan ravi
madhan ravi 2018 年 12 月 1 日
syms x y %example
f = @(t) sin(t)
Nf = int(f,x,y)
i = 1:35040;
x = (1/(24*4))*(i-1);
y = (1/(24*4))*i;
result=vpa(subs(Nf),2)
  2 件のコメント
Tim Stark
Tim Stark 2018 年 12 月 1 日
Thanks a lot!
madhan ravi
madhan ravi 2018 年 12 月 1 日
Anytime :)

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

製品


リリース

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by