Plotting a Sine wave in MATLAB
조회 수: 184 (최근 30일)
이전 댓글 표시
Hi, I am trying to plot a sine wave in matlab. The purpose is to use in an electrical context so for plotting 3 phase AC signals and circuits with resistors, capacitors and inductors etc in circuit. We are also supposed to be using complex numbers in this context so just getting my head around it.
We were given an equation A(t)=Am*Sin(wt+θ)
Where A is the signal, t is time, Am is the amplitude of the signal, w is 2*pi*f, and θ is the phase shift.
How can I plot each of these variables into a MATLAB sinewave plot? I have seen some example sine wave plots online but its not clear how to control each of these variables to get the exact sine wave plot that I want?
How can I also contorl things like frequency, total length of time of the sine wave signal, time period of a single sinewave etc. I want to have total control over all of the characteristics of my sine wave.
댓글 수: 0
답변 (1개)
Sam Chak
2023년 3월 15일
편집: Sam Chak
2023년 3월 15일
The first example of the plot() function doc exactly shows how to plot a sine wave.
Tend = 10; % simulation time (duration)
t = 0:0.01:Tend;
Am = 1; % parameter 1 : amplitude
p = Tend/2; % parameter 2a: period (time for 1-cycle)
f = 1/p; % parameter 2b: frequency
w = 2*pi*f; % parameter 2c: angular frequency
th = pi/2; % parameter 3 : phase (in radian)
y = Am*sin(w*t + th); % sine wave that becomes a 'cosine' after shifted 90°
plot(t, y, 'linewidth', 1.5), grid on
xlabel('t (sec)')
댓글 수: 2
Sam Chak
2023년 3월 15일
I copied the code from multiple examples involving plotting sine wave and inserted your sine formula.
0.01 is the fundamental sample time (not sample rate), also commonly known as step size in MATLAB.
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!