how to integral f(x).*g(x)

2 ビュー (過去 30 日間)
Dion Akmal
Dion Akmal 2021 年 3 月 24 日
編集済み: Dion Akmal 2021 年 3 月 24 日
can somebody help me with my problem. here is my code and it cant be run
f = 0.05:0.05:0.4
t=0:.01:20
X=cos(2*pi*f*t)
Y=cos(2*pi*f*t)
g = @(t) X.*Y;
I = integral(g,0,20,'ArrayValued',true);

採用された回答

Matt J
Matt J 2021 年 3 月 24 日
f = 0.05:0.05:0.4;
% t=0:.01:20;
X=@(t) cos(2*pi*f*t);
Y=@(t) cos(2*pi*f*t);
g=@(t) X(t).*Y(t);
I = integral(g,0,20,'ArrayValued',true)
I = 1×8
10.0000 10.0000 10.0000 10.0000 10.0000 10.0000 10.0000 10.0000
  3 件のコメント
Matt J
Matt J 2021 年 3 月 24 日
You're welcome, but please Accept-click the answer to indicate that it helped.
Dion Akmal
Dion Akmal 2021 年 3 月 24 日
編集済み: Dion Akmal 2021 年 3 月 24 日
can you help me again sir ?, why my code below is error, f in my code is scalar that is 0.05, 0,1 , 0.15, 0.2, ...,0.4
f= 0.05 : 0.05 : 0.4
t = 0 : 0.001 : 20
Y = cos(2*pi*0.1*t)

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

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by