SlideShare a Scribd company logo
1 of 6
Download to read offline
Sheet 2
t =linspace(0,2*pi,200);
v= 5.*exp(2.*t).*sin(1000.*pi.*t);
plot(t,v)
xlabel('time')
ylabel('voltage')
title('RLC circuit ')
2.1 Plot the voltage across a parallel RLC circuit given as
v (t) = 5e2t
sin(1000πt)
Sheet 2
r=1.2; thet=15*pi/180;
ang=0:thet:20*thet;
magn=r.^(ang./thet);
polar(ang,magn)
2.2 Obtain the polar plot of z=r−n
ejnθ
for θ = 15o
and n = 1 to 20.
Sheet 2
Ans.
x=linspace(-4,4,200); p=[1 3 4 2 6]; y=polyval(p,x);
plot(x,y)
r=roots(p)
r =
-1.7749 + 1.2310i
-1.7749 - 1.2310i
0.2749 + 1.1002i
0.2749 - 1.1002i
2.3 A function f (x) is given as
f(x)=x4
+3x3
+4x2
+2x+6
(a) Plot f (x) and (b) Find the roots of f (x)
Sheet 2
clear all
t=0:0.01*pi:4*pi;
m=4*cos(120*pi*t) +2*cos(240*pi*t);
c=10*cos(10000*pi*t );
s=m.*c;
figure
subplot(3,1,1);
plot(t,m)
ylabel('M')
subplot(3,1,2);
plot(t,c)
ylabel('C')
xlabel('t')
subplot(3,1,3);
plot(t,s)
ylabel('S')
2.4 A message signal m (t) and the carrier signal c(t) of acommunication system are,
respectively:
M (t) = 4 cos (120πt) +2 cos(240πt ) and c(t) =10 cos(10,000πt )
A double-sideband suppressed carrier s (t) is given as
s (t) = m(t)c(t)
Plot m (t), c (t) and s (t) using the subplot command.
Sheet 2
v=0:.001:.6;
i=1e-14*exp(v/(2*26e-3));
plot(v,i,'-B','linewidth',2)
xlabel('voltage (V)')
ylabel('current (A)')
title('Diode current')
2.5The voltage v and current I of a certain diode are related by the
expression
i =Isexp[ v/ (nVT )]
If Is = 1.0x10−14
A, n = 2.0 and VT = 26 mV, plot the currentversus
voltage curve of the diode for diode voltage between 0 and 0.6volts.
Sheet 2
X=500:2000; l=0.2;c=2e-6;
F=(1/2*pi)*sqrt(l*c*((c*X.^2)-l)./((c*1500^2)-l));
F1=(1/2*pi)*sqrt(l*c*((c*1500^2)-l)./((c*X.^2)-l));
plot(X,F1,':b')
hold on
plot(X,F,'--r')
xlabel('R (ohm)')
ylabel('F (HZ)')
title('The resonant frequency'); hold off
NAME: Ahmed El-morsy Abdel-hamid
Sec: 1
about me :)
THANK YOU 
2.6The resonant frequency f (in Hz) for the circuit shown is given by:

More Related Content

What's hot

8.7 numerical integration
8.7 numerical integration8.7 numerical integration
8.7 numerical integration
dicosmo178
 
8.2 integration by parts
8.2 integration by parts8.2 integration by parts
8.2 integration by parts
dicosmo178
 
Calculo de integrais_indefinidos_com_aplicacao_das_proprie
Calculo de integrais_indefinidos_com_aplicacao_das_proprieCalculo de integrais_indefinidos_com_aplicacao_das_proprie
Calculo de integrais_indefinidos_com_aplicacao_das_proprie
Rigo Rodrigues
 
Advanced Complex Analysis
Advanced Complex AnalysisAdvanced Complex Analysis
Advanced Complex Analysis
ambareen50
 

What's hot (19)

SPSF03 - Numerical Integrations
SPSF03 - Numerical IntegrationsSPSF03 - Numerical Integrations
SPSF03 - Numerical Integrations
 
8.7 numerical integration
8.7 numerical integration8.7 numerical integration
8.7 numerical integration
 
8.2 integration by parts
8.2 integration by parts8.2 integration by parts
8.2 integration by parts
 
boyd 3.1
boyd 3.1boyd 3.1
boyd 3.1
 
Interpolation
InterpolationInterpolation
Interpolation
 
Integration by parts
Integration by partsIntegration by parts
Integration by parts
 
10CSL67 CG LAB PROGRAM 9
10CSL67 CG LAB PROGRAM 910CSL67 CG LAB PROGRAM 9
10CSL67 CG LAB PROGRAM 9
 
Local linear approximation
Local linear approximationLocal linear approximation
Local linear approximation
 
Numerical differentiation integration
Numerical differentiation integrationNumerical differentiation integration
Numerical differentiation integration
 
Matlab file
Matlab file Matlab file
Matlab file
 
Calculo de integrais_indefinidos_com_aplicacao_das_proprie
Calculo de integrais_indefinidos_com_aplicacao_das_proprieCalculo de integrais_indefinidos_com_aplicacao_das_proprie
Calculo de integrais_indefinidos_com_aplicacao_das_proprie
 
Applied numerical methods lec14
Applied numerical methods lec14Applied numerical methods lec14
Applied numerical methods lec14
 
Advanced Complex Analysis
Advanced Complex AnalysisAdvanced Complex Analysis
Advanced Complex Analysis
 
Equation of linear regression straight line
Equation of linear regression straight lineEquation of linear regression straight line
Equation of linear regression straight line
 
Numerical integration
Numerical integrationNumerical integration
Numerical integration
 
Integration by parts
Integration by partsIntegration by parts
Integration by parts
 
mathFin01
mathFin01mathFin01
mathFin01
 
Matlab plotting
Matlab plottingMatlab plotting
Matlab plotting
 
Calculus
CalculusCalculus
Calculus
 

Viewers also liked (6)

Mcq questions for communication skills course
Mcq questions for communication skills courseMcq questions for communication skills course
Mcq questions for communication skills course
 
رابعة إتصالات
رابعة إتصالاترابعة إتصالات
رابعة إتصالات
 
My cv
My cvMy cv
My cv
 
Communication Skills introduction
Communication Skills introduction Communication Skills introduction
Communication Skills introduction
 
block diagram representation of control systems
block diagram representation of  control systemsblock diagram representation of  control systems
block diagram representation of control systems
 
Multiple choice questions with answers
Multiple choice questions with answersMultiple choice questions with answers
Multiple choice questions with answers
 

Similar to Sheet 2

nagoor kani-763-790.pdf book formula for transform
nagoor kani-763-790.pdf book formula for transformnagoor kani-763-790.pdf book formula for transform
nagoor kani-763-790.pdf book formula for transform
NIETMsSaranyaRAsstPr
 
SolutionsPlease see answer in bold letters.Note pi = 3.14.docx
SolutionsPlease see answer in bold letters.Note pi = 3.14.docxSolutionsPlease see answer in bold letters.Note pi = 3.14.docx
SolutionsPlease see answer in bold letters.Note pi = 3.14.docx
rafbolet0
 
Monopole antenna radiation into a parallel plate waveguide
Monopole antenna radiation into a parallel plate waveguideMonopole antenna radiation into a parallel plate waveguide
Monopole antenna radiation into a parallel plate waveguide
Yong Heui Cho
 
Tele4653 l5
Tele4653 l5Tele4653 l5
Tele4653 l5
Vin Voro
 
chap4_lec1.ppt Engineering and technical
chap4_lec1.ppt Engineering and technicalchap4_lec1.ppt Engineering and technical
chap4_lec1.ppt Engineering and technical
shreenathji26
 

Similar to Sheet 2 (20)

nagoor kani-763-790.pdf book formula for transform
nagoor kani-763-790.pdf book formula for transformnagoor kani-763-790.pdf book formula for transform
nagoor kani-763-790.pdf book formula for transform
 
Enzo palmieri the problem of heat transfer at liquid helium temperatures 1st...
Enzo palmieri  the problem of heat transfer at liquid helium temperatures 1st...Enzo palmieri  the problem of heat transfer at liquid helium temperatures 1st...
Enzo palmieri the problem of heat transfer at liquid helium temperatures 1st...
 
03 Cap 2 - fourier-analysis-2015.pdf
03 Cap 2 - fourier-analysis-2015.pdf03 Cap 2 - fourier-analysis-2015.pdf
03 Cap 2 - fourier-analysis-2015.pdf
 
8 Continuous-Time Fourier Transform Solutions To Recommended Problems
8 Continuous-Time Fourier Transform Solutions To Recommended Problems8 Continuous-Time Fourier Transform Solutions To Recommended Problems
8 Continuous-Time Fourier Transform Solutions To Recommended Problems
 
SolutionsPlease see answer in bold letters.Note pi = 3.14.docx
SolutionsPlease see answer in bold letters.Note pi = 3.14.docxSolutionsPlease see answer in bold letters.Note pi = 3.14.docx
SolutionsPlease see answer in bold letters.Note pi = 3.14.docx
 
Signals and systems: part i solutions
Signals and systems: part i solutionsSignals and systems: part i solutions
Signals and systems: part i solutions
 
Monopole antenna radiation into a parallel plate waveguide
Monopole antenna radiation into a parallel plate waveguideMonopole antenna radiation into a parallel plate waveguide
Monopole antenna radiation into a parallel plate waveguide
 
Laplace periodic function with graph
Laplace periodic function with graphLaplace periodic function with graph
Laplace periodic function with graph
 
Linear transformation.ppt
Linear transformation.pptLinear transformation.ppt
Linear transformation.ppt
 
AC Theory
AC TheoryAC Theory
AC Theory
 
Lesson 7: Vector-valued functions
Lesson 7: Vector-valued functionsLesson 7: Vector-valued functions
Lesson 7: Vector-valued functions
 
[Paul lorrain] solutions_manual_for_electromagneti(bookos.org)
[Paul lorrain] solutions_manual_for_electromagneti(bookos.org)[Paul lorrain] solutions_manual_for_electromagneti(bookos.org)
[Paul lorrain] solutions_manual_for_electromagneti(bookos.org)
 
A Simple Communication System Design Lab #3 with MATLAB Simulink
A Simple Communication System Design Lab #3 with MATLAB SimulinkA Simple Communication System Design Lab #3 with MATLAB Simulink
A Simple Communication System Design Lab #3 with MATLAB Simulink
 
Tele4653 l5
Tele4653 l5Tele4653 l5
Tele4653 l5
 
Ejercicio de fasores
Ejercicio de fasoresEjercicio de fasores
Ejercicio de fasores
 
Sk7 ph
Sk7 phSk7 ph
Sk7 ph
 
Sk7 ph
Sk7 phSk7 ph
Sk7 ph
 
Csm chapters12
Csm chapters12Csm chapters12
Csm chapters12
 
Signals Processing Homework Help
Signals Processing Homework HelpSignals Processing Homework Help
Signals Processing Homework Help
 
chap4_lec1.ppt Engineering and technical
chap4_lec1.ppt Engineering and technicalchap4_lec1.ppt Engineering and technical
chap4_lec1.ppt Engineering and technical
 

Recently uploaded

VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
amitlee9823
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
ssuser89054b
 
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoorTop Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
dharasingh5698
 

Recently uploaded (20)

(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
 
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
 
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
 
A Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna MunicipalityA Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna Municipality
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . ppt
 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
 
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
 
22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf
 
2016EF22_0 solar project report rooftop projects
2016EF22_0 solar project report rooftop projects2016EF22_0 solar project report rooftop projects
2016EF22_0 solar project report rooftop projects
 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
 
Unit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdfUnit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdf
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - V
 
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
COST-EFFETIVE  and Energy Efficient BUILDINGS ptxCOST-EFFETIVE  and Energy Efficient BUILDINGS ptx
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
 
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoorTop Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
 
Block diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptBlock diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.ppt
 

Sheet 2