How do you generate a stair up MATLAB function?
exactly like the one in the pircture below

 채택된 답변

Star Strider
Star Strider 2019년 1월 30일

2 개 추천

Try this:
t = 0:100;
s = floor(rem(t, 10.1));
figure
stairs(t, s)
Experiment to get the result you want.

댓글 수: 6

Thank you!!!!!!!!
My pleasure.
If my Answer helped you solve your problem, please Accept it!
I need to create a stair-up function with the following paramaters
amplitude= 1.05
offset=-.08
frequency= 14 Hertz
I couldn't do it with the code you gave me ):
Try this for a start:
N = 0.5; % Number Of Cycles
A = 1.08; % Amplitude
Ofst = -0.08; % Offset
f = 60/14; % Frequency (Period)
t = linspace(0, 60*N, 60*N*3);
s = (rem(t, f))*A./f + Ofst;
figure
stairs(t, s)
Experiment to get the result you want.
Thank you sir! It helped.
As always, my pleasure!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

질문:

2019년 1월 30일

댓글:

2019년 1월 30일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by