How to generate a rectangular signal or wave of ?( ?/6 ) using the sign function.

조회 수: 19 (최근 30일)
Rajendra Kumar
Rajendra Kumar 2019년 10월 21일
편집: Yuan Li 2019년 10월 21일
MATLAB program to generate rect function ?( ?/6 ) using the sign function.

답변 (1개)

Yuan Li
Yuan Li 2019년 10월 21일
편집: Yuan Li 2019년 10월 21일
t = 0:0.1:100;
a = sign(sin(pi.*t./6));
figure,plot(t,a);
ylim([-1.5 1.5]);

카테고리

Help CenterFile Exchange에서 MATLAB Report Generator에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by