First time here? Check out the FAQ!

Ask Your Question
1

stair function - how to

asked 11 years ago

mresimulator gravatar image

Hi experts!

How can I make a stair function graph?

Thanks a lot!

Preview: (hide)

2 Answers

Sort by » oldest newest most voted
1

answered 11 years ago

tmonteil gravatar image

I am not sure to understand your wish, do you mean something like:

sage: plot(floor, 0, 10)
Preview: (hide)
link
0

answered 11 years ago

calc314 gravatar image

You can use a sum of heaviside functions.

f(x)=heaviside(x)+heaviside(x-1)+heaviside(x-2)+heaviside(x-3)
plot(f(x),(x,0,4),exclude=[0,1,2,3])

Or, you can do it with a python function.

def step(x):
    if (0<x) and (x<1):
        return(1)
    elif (x<2):
        return(2)
    elif (x<3):
        return(3)
    else:
        return(4)
plot(lambda x: step(x),(x,0,4),exclude=[0,1,2,3])

You could also use the piecewise command.

Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 11 years ago

Seen: 1,095 times

Last updated: Oct 18 '13