integral I need help to integrate this function x(t)=(1-t/​t0)*sin*w*​(t-T) with respect to T (dT). It should be evaluted from 0 to t.

4 views (last 30 days)
HI!!
I need help to integrate this function x(t)=(1-t/t0)*sin*w*(t-T) with respect to T (dT). It should be evaluted from 0 to t.

Answers (1)

Alan Stevens
Alan Stevens on 10 Feb 2021
Like this
syms T w t t0
q = int((1-T/t0)*sin(w*(t-T)),T,0,t);
pretty(q)

Community Treasure Hunt

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

Start Hunting!