Need help graphing a step function within Matlab

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
8 replies · 14K views
Lolsauce
Messages
21
Reaction score
0
So I'm not going to lie, I'm pretty new with this software. I was assign a homework assignment, but I'm not sure how you graph a step function.

Given this waveform use the step function to find an equation:

http://img163.imageshack.us/img163/2545/stepfunction.jpg"

I calculated the step function to be:

x(t) = (t^2)[u(t)-u(t-2)]+2(t-4)[u(t-2)-u(t-4)] , which I'm pretty positive is right.

Now graphing in Matlab is my biggest problem. I've looked over my textbook at sample graphing techniques, this is what I have attempted.

Code:
>> x = inline('(t^2)(u(t)-u(t-2))+2(t-4)(u(t-2)-u(t-4))', 't')

g =

     Inline function:
     g(t) = (t^2)(u(t)-u(t-2))+2(t-4)(u(t-2)-u(t-4))

>> t = (-1:5);
>> plot(t,g(t));
? Error using ==> inlineeval at 15
Error in inline expression ==>
(t^2)(u(t)-u(t-2))+2(t-4)(u(t-2)-u(t-4))
 Error: Unbalanced or unexpected
 parenthesis or bracket.

Error in ==> inline.subsref at 27
    INLINE_OUT_ =
    inlineeval(INLINE_INPUTS_,
    INLINE_OBJ_.inputExpr,
    INLINE_OBJ_.expr);

Any tips or suggestions would be helpful, thank you.
 
Last edited by a moderator:
Physics news on Phys.org
Matlab does not perform multiplication in general when one enters things such as a(b + c).

You need to specify the array product (.*) operator for multiplication, as you want the function evaluated for each value in the vector t, and do not wish to do matrix multiplication using the entire t vector.

There is no function u provided with MatLab. You may create one with the following code.

Code:
u = @(x)(x>=0);
 
MisterX said:
Matlab does not perform multiplication in general when one enters things such as a(b + c).

You need to specify the array product (.*) operator for multiplication, as you want the function evaluated for each value in the vector t, and do not wish to do matrix multiplication using the entire t vector.

There is no function u provided with MatLab. You may create one with the following code.

Code:
u = @(x)(x>=0);

What do you mean by no function u? Do you mean I have no declared one? Shouldn't I enter this as u, since it is the unit step function?

Code:
>> u = inline('(t>=0)','t')
 
Lolsauce said:
What do you mean by no function u? Do you mean I have no declared one?

I meant no function named "u" is included with MatLab.

Lolsauce said:
Shouldn't I enter this as u, since it is the unit step function?

You may name it that if you wish.
 
MisterX said:
I meant no function named "u" is included with MatLab.
You may name it that if you wish.

Oohhhhh I got it, dumb mistake :(
So what I have now is:

Code:
>> u = inline('(t>=0)','t')       //this defines u also known as the step function
u = Inline function:             //this is returned by Matlab
     u(t) = t(>=0)
p = inline('(t>=0&(t<4))','t')  //this defines p and let's the t boundaries go from 0 to 4 just like the one in the problem
t = (-1:5);                           // sets t for the values from -1 to 5 just to be able to graph the graph
plot(t,p(t));                //plots the graph
xlabel('t'); ylabel('p(t) = (t.*t)(u(t)-u(t-2))+2.*(t-4).*(u(t-2)-u(t-4))     //sets the function
axis([-.1 5 -5 5]);      // sets the axis to be able to see the graph

But there is a problem after I put in:

Code:
xlabel('t'); ylabel('p(t) = (t.*t)(u(t)-u(t-2))+2.*(t-4).*(u(t-2)-u(t-4))
Error: A MATLAB string constant is not
terminated properly.

Any ideas? :cry:
 
Code:
xlabel('t'); ylabel('p(t) = (t.*t)(u(t)-u(t-2))+2.*(t-4).*(u(t-2)-u(t-4)[B][SIZE="6"]'[/B])

Check your syntax.
 
So I scraped all my old code and just started a new simple approach using an if statement. Although there is a problem When I graph it, all I get is a linear straight line.

Code:
x = -1:.01:5;         //Sets limits of x
steps = size(x,2);   // I'm not exactly sure what these do, but I was told to do this because
y = zeros(steps);   // I needed to define y
 if (x <= 2)            
y = x^2;
elseif (x >= 2)
y = 2.*x-8;
plot(x,y)

Any tips?
 
The expression "x <= 2" evaluates to a "logical array" with the same dimensions as x. Each value in this "logical array" would correspond an element of x, and would indicate if that particular value was less than or equal to 2.

The situation is similar for the expression "x >= 2".According to the the http://www.mathworks.com/help/techdoc/ref/if.html", "An evaluated expression is true when the result is nonempty and contains all nonzero elements (logical or real numeric). Otherwise, the expression is false."

So the lines
Code:
y = x^2;
and
Code:
y = 2.*x-8;
would never be executed, because the "logical arrays" would not contain all nonzero elements. Even if they did, it would not achieve the desired result.

The following links may be worth looking at.

http://www.mathworks.com/help/techdoc/matlab_prog/f0-40063.html#f0-38145"

http://www.mathworks.com/help/techdoc/math/f1-85462.html#bq7egb6-1"

You can use a logical array produced with a relational operator such as "<=" to index an array. You can use this technique to assign different parts of "y" separately.
 
Last edited by a moderator:
Lolsauce said:
Any tips?

1. Use a for loop to calculate the values individually.
2. Avoid the if statement by using relational operators inline.