New Reply

Integration using matlab

 
Share Thread Thread Tools
Mar25-08, 07:46 AM   #1
 

Integration using matlab


Hi everyone, I have a problem in finding an integral of a function. I'm given the following function: x(t) = t + 1 (-1 <= t < o ); e^-t (0<= t <= 2); 0 (otherwise).I have to find the integral and plot it with its derivative and the given function.

Here is my code:
%Set up integral vector
u(1:1000) = 0;
%Find the integral
for n = 1:999;
if( (t(n)>= -1) & (t(n)<0) );
u(n) = 0.5.*(t.^2) + t;
end
if ( (t(n)>=0) & (t(n)<2) );
u(n) = -1.*(exp(-t));
end
if( (t(n)>2 ) )
u(n) = 1.*t;
end
end
subplot(3,1,3);
plot(t,u);

I get the following error when trying to run the code:
??? In an assignment A(I) = B, the number of elements in B and
I must be the same.

Error in ==> tut1 at 32
u(n) = 0.5.*(t.^2) + t;
PhysOrg.com
PhysOrg
science news on PhysOrg.com

>> Ants and carnivorous plants conspire for mutualistic feeding
>> Forecast for Titan: Wild weather could be ahead
>> Researchers stitch defects into the world's thinnest semiconductor
Mar26-08, 08:18 AM   #2
 
Quote by Execute View Post
Error in ==> tut1 at 32
u(n) = 0.5.*(t.^2) + t;
In these three lines
Code:
     u(n) = 0.5.*(t.^2) + t;
      u(n) = -1.*(exp(-t));
      u(n) = 1.*t;
you are trying to store a vector in a scalar's place. u(n) is a scalar and t is a vector, so change t to t(n) and you will be fine. Also, be sure to define t properly (don't see it in your code), e.g. t = linspace(-1,2,1000).
Apr6-11, 10:17 PM   #3
 
i have 1 question
how do i apply 1/s in simulink block to M-code,
for example
Xdot to X
in simulink, we just apply the 1/s(integration block).
so i just want to know, is it possible to integrate the Xdot to X in m code??
New Reply
Thread Tools


Similar Threads for: Integration using matlab
Thread Forum Replies
Matlab: How to apply filters to and ECG signal using matlab? Math & Science Software 2
Matlab Numerical Integration Math & Science Software 3
the integration block in matlab Math & Science Software 3
Using Matlab for integration Math & Science Software 2
Question arrising from integration homework (advanced integration i guess?) Calculus 9