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

2 visualizaciones (últimos 30 días)
Dion Akmal
Dion Akmal el 24 de Mzo. de 2021
Editada: Dion Akmal el 24 de Mzo. de 2021
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);

Respuesta aceptada

Matt J
Matt J el 24 de Mzo. de 2021
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 comentarios
Matt J
Matt J el 24 de Mzo. de 2021
You're welcome, but please Accept-click the answer to indicate that it helped.
Dion Akmal
Dion Akmal el 24 de Mzo. de 2021
Editada: Dion Akmal el 24 de Mzo. de 2021
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)

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre MATLAB en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by