Computation of Energy of sinusoidal signal
Aim: Computation of Energy of sinusoidal signal
Equipments:
PC with windows OS.
MATLAB Software
% Program generates a sinusoidal Pulse and computes its Energy
f=input('enter the value of the frequency')
T=1/f;
t=0:T/f:T;
x=(sin(2*pi*f*t));
x1=abs(x);
E1=x1.*x1;
E=sum(E1);
plot(t,x)
xlabel('time')
ylabel('amplitude')
title('Sinusoidal signal')
disp('Energy of the generated signal in joules is')
disp(E)
Result:
enter the value of the frequency100
f = 100
Energy of the generated signal in joules is
50.0000
Output:

-
CreatedFeb 13, 2020
-
UpdatedFeb 13, 2020
-
Views156
Introduction
Basic operations on Matrices
Genaration of various signals and sequences
Operations on signals and sequences
Finding the even and odd parts of signal/sequence and real and imaginary parts of signal
Verification of Linearity and time in-variance properties of a given continuous/discrete system
Linear Convolution
Auto correlation and cross correlation between signals and sequences
Computation of unit sample, unit step and sinusoidal response of the given LTI system and verifying its physical reliability and stability properties
GIBBS phenomenon
Sampling theorem verification
Finding the Fourier transform of a given signal and plotting its magnitude and phase spectrum
Laplace Transforms
Locating the zeros and poles and plotting the pole zero maps in z-plane for the given transfer function
Gaussian Noise
Verification of Wiener- Khinchin relation
Removal of noise by auto-correlation/cross-correlation
Extraction of Periodic signal masked by noise using correlation.
Checking a Random process for stationarity in wide sense
To find a mean and variance of a discrete random variable
To find a moment generating function of a discrete random variable
Computation of Energy of sinusoidal signal
Computation of energy of rectangular pulse
Computation of Average Power
Waveform Synthesis
Find and plot the cumulative distribution and probability density functions of a random variable
Verification of central limit theorem