Plotting a Sine wave in MATLAB

조회 수: 117 (최근 30일)
AluminiumMan
AluminiumMan 2023년 3월 15일
댓글: Sam Chak 2023년 3월 15일
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.

답변 (1개)

Sam Chak
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
AluminiumMan
AluminiumMan 2023년 3월 15일
Ok so for t, 0 is your start time, Tend is your end time (presumably you need to replace this with a value???) and the 0.01 is your sample rate for your signal? So you need to specify how regularly you have samples for your signal?
Sam Chak
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 CenterFile Exchange에서 Motor Drives에 대해 자세히 알아보기

태그

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by