Need help graphing a step function within Matlab

Click For Summary

Discussion Overview

The discussion centers on graphing a step function in Matlab, specifically addressing a homework assignment involving the creation and plotting of a mathematical expression representing a step function. Participants explore various coding techniques and troubleshoot errors encountered during the graphing process.

Discussion Character

  • Homework-related
  • Technical explanation
  • Exploratory

Main Points Raised

  • One participant expresses uncertainty about graphing a step function in Matlab and shares their initial attempt at formulating the function.
  • Another participant points out the need for the array product operator (.*) for element-wise multiplication in Matlab.
  • There is a discussion about the absence of a predefined unit step function (u) in Matlab, with suggestions on how to define it.
  • A participant attempts to define the step function using inline syntax but encounters syntax errors in their plotting commands.
  • One participant shifts to using an if statement to define the function but ends up with a linear output instead of the expected step function.
  • Another participant explains that the if statement does not work as intended due to the logical array produced by relational comparisons.
  • Suggestions are made to use for loops or relational operators inline to achieve the desired results without if statements.

Areas of Agreement / Disagreement

Participants do not reach consensus on the best approach to graph the step function, as multiple coding strategies are proposed and debated. The discussion remains unresolved regarding the most effective method to implement the function in Matlab.

Contextual Notes

Participants express uncertainty about specific Matlab syntax and functionality, particularly regarding the use of inline functions and logical arrays. There are also unresolved issues related to the proper definition and application of the step function in the context of the problem.

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.
 

Similar threads

  • · Replies 1 ·
Replies
1
Views
4K
  • · Replies 8 ·
Replies
8
Views
2K
  • · Replies 8 ·
Replies
8
Views
3K
  • · Replies 41 ·
2
Replies
41
Views
10K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 6 ·
Replies
6
Views
4K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 5 ·
Replies
5
Views
2K
Replies
5
Views
8K
  • · Replies 4 ·
Replies
4
Views
4K