Quadratic and Trapizodial area

조회 수: 3 (최근 30일)
Raye
Raye 2013년 3월 14일
The velocity of an object is V=t*sin(ct) c is a constant
So here how the program goes so far
x=t; t= 0:0.1:10; y= t.*sin(c.*t); for c = 0.1; A = trapz(x,y) end
Whenever I try more then one c it does give me both answers even if i do separate lines of code.
And quad(fun,a,b) has not been working well with the function y
c= 0.1 10*pi, 200

답변 (1개)

Youssef  Khmou
Youssef Khmou 2013년 3월 14일
A=zeros(3,1);
c=[0.1 10*pi 200];
t=0:0.1:10;
x=t;
for n=1:3
y=t.*sin(c(n)*t);
A(n)=trapz(x,y);
end % Results of the three integrals are stored in A

카테고리

Help CenterFile Exchange에서 Physics에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by