Quadratic and Trapizodial area
Show older comments
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
Answers (1)
Youssef Khmou
on 14 Mar 2013
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
Categories
Find more on Physics in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!