How can I plot a periodic signal f(t)= t.^3 , -pi<=t<pi over interval -2*pi<=t<=2*pi

조회 수: 2 (최근 30일)
Joseph Mohane
Joseph Mohane 2018년 10월 4일
다시 열림: Walter Roberson 2018년 12월 22일
f(t)= t.^3 , -pi<=t<pi over interval -2*pi<=t<=2*pi

채택된 답변

Torsten
Torsten 2018년 10월 4일
x = linspace(-2*pi,2*pi,1000);
y = (mod(x+pi,2*pi)-pi).^3;
plot(x,y)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Signal Processing Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by