필터 지우기
필터 지우기

plotting a sine or cosine wave with specific time with specific cycles

조회 수: 15 (최근 30일)
Hello, hope you're doing well.
I want to plot the attache sine graph with 50 cycles and 33 sec. I have tried several codes but didnt work.
Could someone help me with that?
Thanks in advance.

채택된 답변

Benjamin Thompson
Benjamin Thompson 2022년 2월 15일
By 50 cycles, I understand that you mean that over 33 seconds the signal should have 50 periods.
>> t = 0:(1/50):33;
>> x = 2*sin(2*pi*50/33*t);
>> figure, plot(t, x)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by