SlideShare a Scribd company logo
1 of 53
“Introduction to MATLAB & SIMULINK”
Presented by
Amarjeetsingh Thakur
Asst. Professor
Dept. of Electronics & Communication Engg.
KLETU ,Hubli, Karnataka, India
1
WELCOME TO THE WORLD
OF MATLAB!!!
2
Playing w ith arrays of numbers
3
Creating and working with Arrays of
numbers
>> x=[4 5 6 ] % x is a row vector with three
elements
>> y=[1 2 3]
>> z=x+y % z=5 7 9
>> z=x-y %z= 3 3 3
>> j=[1;2;3] % x is a column vector with three
elements
>> z=x.*y % z= 4 10 18
>> z=x./y % z=4.0000 2.5000 2.0000
4
Contd…
x=linspace(0,10,5) % x = 0 2.5000 5.0000 7.5000
10.0000
Create a vector x with 5 elements linearly
spaced between 0 and 10
z=sqrt(x) % Square root of x
5
Creating p lots in mat lab so easy!!!
6
Creating simp le p lots
%Draw a circle of unit radius
theta= linspace(0,2*pi,100); % Create a linearly
spaced 100 elements long vector Θ
x=cos(theta);
y=sin(theta); % Calculate x and y coordinates
plot(x,y); % Plot x vs y
axis(‘equal’); % Set length scales of two axes to be
same
xlabel(‘x’);
ylabel(‘y’);
title(‘Circle of unit radius’);
7
Contd…
% Plot sine wave
% Plot created on 2/1/2014
x=linspace(0,2*pi,100);
plot(x,sin(x));
plot(x,sin(x),’r’); % Color of sine wave is red
plot(x,sin(x),’+’);
xlabel(‘x’);
ylabel(‘sin(x)’);
title(‘Plot created by Amarsingh’);
8
Contd…
% overlapping of sine waves
x=linspace(0,2*pi,100);
plot(x,sin(x),x,sin(x),’o’)
xlabel(‘x’);
ylabel(‘sin(x)’);
9
Contd…
x=linspace(0,2*pi,100);
subplot(3,1,1); %Divide figure window into 3
rows, 1 column and place the figure in first part
plot(x,sin(x));
subplot(3,1,2);
plot(x,cos(x));
subplot(3,1,3);
plot(x,tan(x));
10
Plotting the given function
>>syms x
>> subplot(3,1,1)
>> f=sin(x)
>> ezplot(f)
>> subplot(3,1,2)
>> f=cos(x)
>> ezplot(f)
>> subplot(3,1,3)
>> f=x+10
>> ezplot(f)
11
12
MATLAb w ill make us to enjoy
symbolic comp utation 
13
Symbolic Computation
>> syms x y % x & y as symbolic variables
>> f=(x+y)^2 % x^2 + 2*x*y + y^2
>>expand(f) % x^2 + 2*x*y + y^2
>>pretty(ans) % Use pretty to get the
expression in more readable form
14
Contd…
% Expansion of trignometric expression
>>z=sin(x+y)
>>expand(z) % cos(x)*sin(y) + cos(y)*sin(x)
>>pretty(ans) % cos(x) sin(y) + cos(y) sin(x)
>>z=cos(x+y)
>> expand(z) % cos(x)*cos(y) - sin(x)*sin(y)
>>pretty(ans)
>> z=tan(x+y)
>> expand(z) % -(tan(x) + tan(y))/(tan(x)*tan(y) - 1)
>> pretty(ans)
15
Contd..
% Differentiation of an expression
>> syms x y
>> z=sin(x+y)
>> diff(z) % differentiate z with respect to x.
16
Contd…
% Second derivative of z with respect to x
>> z=sin(x)
>> diff(diff(z)) % -sin(x)
>> diff(diff(z,x)) % -sin(x)
>> z=x^3+x^2+x
>> diff(diff(z,x)) % 6*x + 2
>> pretty(ans) % 6 x + 2
17
Contd…
% Indefinite integral
>> z= sin(x)
>> int(z,x) % -cos(x)
>> int(int(z,x)) %-sin(x) % Double integration
w.r.t. x
18
Contd…
% Definite integral
>> z=x^2
>> j=int(z,x,0,2) % j=8/3
>> k=int(j,x,0,3) % k=8
19
Have fun p laying w it h mat rice s 
20
Matrices & Vectors
% Create a random matrix 4X3
x=rand(4,3)
x(3:4,2:3) % get those elements of A that are
located in 3 to 4 and columns 2 to 3
x(:,4)=x(:,1) % Add a fourth column to x and set
it equal to the first column of x
x(2:4,2:4)=eye(3) % Replace the last 3X3
submatrix of x by a identity matrix
x([1 3],:)=[] % Delete the first and third rows of x
21
Contd…
x=round(x) % Round off all entries of x
22
Contd..
% Magic square matrix
x=magic(3) % x = magic(n) returns an n-by-n
matrix constructed from the integers 1
through n^2 with equal row and column sums.
The order n must be a scalar greater than or
equal to 3.
23
Programs? ? ?
Yes !!!you love it 
24
Loop s, B ranche s, and cont rol -flow
1. For loops: A for loop is used to repeat a
statement or a group of statements for a
fixed number of times.
>>for m=1:100
>>num=1/(m+1)
>>end
25
Contd…
2. If-elseif-else statements
>>i=6; j=21;
>>If i>5
>>k=i;
>>elseif (i>1) & (j==20)
>>k=5*i+j;
>>else
>>k=1;
>>end
26
Contd…
3. switch-case-otherwise
color=input(‘color=’,’s’);
switch color
case ‘red’
c=[1 0 0];
case ‘green’
c=[0 1 0];
case ‘blue’
c=[0 0 1];
otherwise
error(‘Invalid choice of color’)
end 27
MATLAB makes you smarter to do
linear algebra op erations 
28
Linear Algebra
%Task: To solve a set of given linear algebraic
equations
5x-3y+2z=10
-3x+8y+4z=20
2x+4y-9z=9
>> A=[5 -3 2; -3 8 4; 2 4 -9];
>> b=[10; 20; 9];
>> x=Ab
>> c=A*x % 10.00 20.00 9.00
29
Contd..
%Task: Compute roots of polynomials
x^5-3*x^3+x^2-9
>> c=[1 0 -3 1 -9];
>> roots(c)
30
FUN WITH BAR CHARTS & PIE CHARTS
31
B a s i c 2 - D p l o t s
% World population by continents.
>>cont=char(‘Asia’,’Europe’,’Africa’,
’N.America’,’S.America’);
>>pop=[3332;696;694;437;307];
>>barh(pop) % Bar chart
>>for i=1:5
gtext(cont(i,:));
>>end
>>xlabel(‘population in millions’)
>>title(‘World poplation (1992)’,’fontsize’,18)
32
33
Contd..
>>cont=char(‘Asia’,’Europe’,’Africa’,
’N.America’,’S.America’);
>>pop=[3332;696;694;437;307];
>>pie(pop) % Pie chart
>>for i=1:5
gtext(cont(i,:));
>>end
>>xlabel(‘population in millions’)
>>title(‘World poplation (1992)’,’fontsize’,18)
34
35
CONTd..
>>pop=[807;3701;731;481;349];
>>continents={'Africa','Asia','Europe','N.America
','S.America'};
>> pie3(pop,continents)
>> title('world population in 2003')
36
37
Ploting grap h on semilog she e t
>> t=linspace(0,2*pi,200);
>> x=exp(-t);
>> y=t;
>> semilogx(x,y)
>> grid
>> grid on
38
39
Contd..
>> t=linspace(0,2*pi,200);
>> semilogy(t,exp(t))
>> grid
40
41
HURRAY!!!
LEARNING SIMULINK IS SO FUN!!!
42
43
Display of sine wave on scope
44
Multiplexing & Demultiplexing of
signals
45
Logical Operations
46
Addition/Subtraction Operation
47
Comparing a constant
48
Plane take-off demo model
49
Plane take-off with trajectory tracing
50
References
www.mathworks.com
“Getting started with MATLAB” by Rudra
Pratap Singh.
51
Any QUERRIES??????
52
53

More Related Content

What's hot

6.4 Graphing Polynomials (Relative Max/Min, Zeros)
6.4 Graphing Polynomials (Relative Max/Min, Zeros)6.4 Graphing Polynomials (Relative Max/Min, Zeros)
6.4 Graphing Polynomials (Relative Max/Min, Zeros)swartzje
 
9.3 Determinant Solution of Linear Systems
9.3 Determinant Solution of Linear Systems9.3 Determinant Solution of Linear Systems
9.3 Determinant Solution of Linear Systemssmiller5
 
Module 3 polynomial functions
Module 3   polynomial functionsModule 3   polynomial functions
Module 3 polynomial functionsdionesioable
 
3 2 Polynomial Functions And Their Graphs
3 2 Polynomial Functions And Their Graphs3 2 Polynomial Functions And Their Graphs
3 2 Polynomial Functions And Their Graphssilvia
 
pairs of linear equation in two variable
pairs of linear equation in two variablepairs of linear equation in two variable
pairs of linear equation in two variableJashan Kainth
 
6.3 evaluating-and-graphing-polynomila-functions
6.3 evaluating-and-graphing-polynomila-functions6.3 evaluating-and-graphing-polynomila-functions
6.3 evaluating-and-graphing-polynomila-functionsmorrobea
 
Polynomial Function and Synthetic Division
Polynomial Function and Synthetic DivisionPolynomial Function and Synthetic Division
Polynomial Function and Synthetic DivisionAleczQ1414
 
Lecture 8 section 3.2 polynomial equations
Lecture 8   section 3.2 polynomial equationsLecture 8   section 3.2 polynomial equations
Lecture 8 section 3.2 polynomial equationsnjit-ronbrown
 
Module 2 lesson 4 notes
Module 2 lesson 4 notesModule 2 lesson 4 notes
Module 2 lesson 4 notestoni dimella
 
M1 L5 Remediation Notes
M1 L5 Remediation NotesM1 L5 Remediation Notes
M1 L5 Remediation Notestoni dimella
 
Polynomial Functions
Polynomial FunctionsPolynomial Functions
Polynomial Functionsnicole379865
 
3.4 Polynomial Functions and Their Graphs
3.4 Polynomial Functions and Their Graphs3.4 Polynomial Functions and Their Graphs
3.4 Polynomial Functions and Their Graphssmiller5
 
Introduction to straight line graphs lesson
 Introduction to straight line graphs lesson Introduction to straight line graphs lesson
Introduction to straight line graphs lessonSajidPervez2
 
Straight line-equation.
Straight line-equation.Straight line-equation.
Straight line-equation.SajidPervez2
 
Straight line graphs
Straight line graphsStraight line graphs
Straight line graphsSajidPervez2
 
Algebra Tiles Pp Version 2
Algebra Tiles Pp   Version 2Algebra Tiles Pp   Version 2
Algebra Tiles Pp Version 2guest880c6c
 

What's hot (20)

6.4 Graphing Polynomials (Relative Max/Min, Zeros)
6.4 Graphing Polynomials (Relative Max/Min, Zeros)6.4 Graphing Polynomials (Relative Max/Min, Zeros)
6.4 Graphing Polynomials (Relative Max/Min, Zeros)
 
9.3 Determinant Solution of Linear Systems
9.3 Determinant Solution of Linear Systems9.3 Determinant Solution of Linear Systems
9.3 Determinant Solution of Linear Systems
 
Module 3 polynomial functions
Module 3   polynomial functionsModule 3   polynomial functions
Module 3 polynomial functions
 
3 2 Polynomial Functions And Their Graphs
3 2 Polynomial Functions And Their Graphs3 2 Polynomial Functions And Their Graphs
3 2 Polynomial Functions And Their Graphs
 
pairs of linear equation in two variable
pairs of linear equation in two variablepairs of linear equation in two variable
pairs of linear equation in two variable
 
6.3 evaluating-and-graphing-polynomila-functions
6.3 evaluating-and-graphing-polynomila-functions6.3 evaluating-and-graphing-polynomila-functions
6.3 evaluating-and-graphing-polynomila-functions
 
Polynomial Function and Synthetic Division
Polynomial Function and Synthetic DivisionPolynomial Function and Synthetic Division
Polynomial Function and Synthetic Division
 
Lecture 8 section 3.2 polynomial equations
Lecture 8   section 3.2 polynomial equationsLecture 8   section 3.2 polynomial equations
Lecture 8 section 3.2 polynomial equations
 
Module 2 lesson 4 notes
Module 2 lesson 4 notesModule 2 lesson 4 notes
Module 2 lesson 4 notes
 
M1 L5 Remediation Notes
M1 L5 Remediation NotesM1 L5 Remediation Notes
M1 L5 Remediation Notes
 
Polynomial Functions
Polynomial FunctionsPolynomial Functions
Polynomial Functions
 
Algebra tiles graphic organizers
Algebra tiles graphic organizersAlgebra tiles graphic organizers
Algebra tiles graphic organizers
 
3.4 Polynomial Functions and Their Graphs
3.4 Polynomial Functions and Their Graphs3.4 Polynomial Functions and Their Graphs
3.4 Polynomial Functions and Their Graphs
 
Introduction to straight line graphs lesson
 Introduction to straight line graphs lesson Introduction to straight line graphs lesson
Introduction to straight line graphs lesson
 
Es272 ch2
Es272 ch2Es272 ch2
Es272 ch2
 
7.2 abs value function
7.2 abs value function7.2 abs value function
7.2 abs value function
 
Straight line-equation.
Straight line-equation.Straight line-equation.
Straight line-equation.
 
Straight line graphs
Straight line graphsStraight line graphs
Straight line graphs
 
Algebra Tiles Pp Version 2
Algebra Tiles Pp   Version 2Algebra Tiles Pp   Version 2
Algebra Tiles Pp Version 2
 
MULTIPLYING BINOMIALS USING ALGEBRA TILES
MULTIPLYING BINOMIALS USING ALGEBRA TILESMULTIPLYING BINOMIALS USING ALGEBRA TILES
MULTIPLYING BINOMIALS USING ALGEBRA TILES
 

Similar to “Introduction to MATLAB & SIMULINK”

INTRODUCTION TO MATLAB presentation.pptx
INTRODUCTION TO MATLAB presentation.pptxINTRODUCTION TO MATLAB presentation.pptx
INTRODUCTION TO MATLAB presentation.pptxDevaraj Chilakala
 
Intro to Matlab programming
Intro to Matlab programmingIntro to Matlab programming
Intro to Matlab programmingAhmed Moawad
 
Matlab solved problems
Matlab solved problemsMatlab solved problems
Matlab solved problemsMake Mannan
 
Calculus - Functions Review
Calculus - Functions ReviewCalculus - Functions Review
Calculus - Functions Reviewhassaanciit
 
maths_formula_sheet.pdf
maths_formula_sheet.pdfmaths_formula_sheet.pdf
maths_formula_sheet.pdfVanhoaTran2
 
Polynomials and Curve Fitting in MATLAB
Polynomials and Curve Fitting in MATLABPolynomials and Curve Fitting in MATLAB
Polynomials and Curve Fitting in MATLABShameer Ahmed Koya
 
Introduction to matlab lecture 2 of 4
Introduction to matlab lecture 2 of 4Introduction to matlab lecture 2 of 4
Introduction to matlab lecture 2 of 4Randa Elanwar
 
Scientific Computing II Numerical Tools & Algorithms - CEI40 - AGA
Scientific Computing II Numerical Tools & Algorithms - CEI40 - AGAScientific Computing II Numerical Tools & Algorithms - CEI40 - AGA
Scientific Computing II Numerical Tools & Algorithms - CEI40 - AGAAhmed Gamal Abdel Gawad
 
Matlab-free course by Mohd Esa
Matlab-free course by Mohd EsaMatlab-free course by Mohd Esa
Matlab-free course by Mohd EsaMohd Esa
 
Fundamentals of Image Processing & Computer Vision with MATLAB
Fundamentals of Image Processing & Computer Vision with MATLABFundamentals of Image Processing & Computer Vision with MATLAB
Fundamentals of Image Processing & Computer Vision with MATLABAli Ghanbarzadeh
 
Basic R Data Manipulation
Basic R Data ManipulationBasic R Data Manipulation
Basic R Data ManipulationChu An
 

Similar to “Introduction to MATLAB & SIMULINK” (20)

bobok
bobokbobok
bobok
 
Matlab
MatlabMatlab
Matlab
 
20100528
2010052820100528
20100528
 
20100528
2010052820100528
20100528
 
INTRODUCTION TO MATLAB presentation.pptx
INTRODUCTION TO MATLAB presentation.pptxINTRODUCTION TO MATLAB presentation.pptx
INTRODUCTION TO MATLAB presentation.pptx
 
R Programming Intro
R Programming IntroR Programming Intro
R Programming Intro
 
Intro to Matlab programming
Intro to Matlab programmingIntro to Matlab programming
Intro to Matlab programming
 
Matlab solved problems
Matlab solved problemsMatlab solved problems
Matlab solved problems
 
Calculus - Functions Review
Calculus - Functions ReviewCalculus - Functions Review
Calculus - Functions Review
 
maths_formula_sheet.pdf
maths_formula_sheet.pdfmaths_formula_sheet.pdf
maths_formula_sheet.pdf
 
TABREZ KHAN.ppt
TABREZ KHAN.pptTABREZ KHAN.ppt
TABREZ KHAN.ppt
 
Polynomials and Curve Fitting in MATLAB
Polynomials and Curve Fitting in MATLABPolynomials and Curve Fitting in MATLAB
Polynomials and Curve Fitting in MATLAB
 
Introduction to matlab lecture 2 of 4
Introduction to matlab lecture 2 of 4Introduction to matlab lecture 2 of 4
Introduction to matlab lecture 2 of 4
 
Scientific Computing II Numerical Tools & Algorithms - CEI40 - AGA
Scientific Computing II Numerical Tools & Algorithms - CEI40 - AGAScientific Computing II Numerical Tools & Algorithms - CEI40 - AGA
Scientific Computing II Numerical Tools & Algorithms - CEI40 - AGA
 
Matlab-free course by Mohd Esa
Matlab-free course by Mohd EsaMatlab-free course by Mohd Esa
Matlab-free course by Mohd Esa
 
Fundamentals of Image Processing & Computer Vision with MATLAB
Fundamentals of Image Processing & Computer Vision with MATLABFundamentals of Image Processing & Computer Vision with MATLAB
Fundamentals of Image Processing & Computer Vision with MATLAB
 
MATHS SYMBOLS.pdf
MATHS SYMBOLS.pdfMATHS SYMBOLS.pdf
MATHS SYMBOLS.pdf
 
Matlab1
Matlab1Matlab1
Matlab1
 
Matlabch01
Matlabch01Matlabch01
Matlabch01
 
Basic R Data Manipulation
Basic R Data ManipulationBasic R Data Manipulation
Basic R Data Manipulation
 

More from Amarjeetsingh Thakur

Python code for servo control using Raspberry Pi
Python code for servo control using Raspberry PiPython code for servo control using Raspberry Pi
Python code for servo control using Raspberry PiAmarjeetsingh Thakur
 
Python code for Push button using Raspberry Pi
Python code for Push button using Raspberry PiPython code for Push button using Raspberry Pi
Python code for Push button using Raspberry PiAmarjeetsingh Thakur
 
Python code for Buzzer Control using Raspberry Pi
Python code for Buzzer Control using Raspberry PiPython code for Buzzer Control using Raspberry Pi
Python code for Buzzer Control using Raspberry PiAmarjeetsingh Thakur
 
Introduction to Internet of Things (IoT)
Introduction to Internet of Things (IoT)Introduction to Internet of Things (IoT)
Introduction to Internet of Things (IoT)Amarjeetsingh Thakur
 
Introduction to Things board (An Open Source IoT Cloud Platform)
Introduction to Things board (An Open Source IoT Cloud Platform)Introduction to Things board (An Open Source IoT Cloud Platform)
Introduction to Things board (An Open Source IoT Cloud Platform)Amarjeetsingh Thakur
 
Introduction to MQ Telemetry Transport (MQTT)
Introduction to MQ Telemetry Transport (MQTT)Introduction to MQ Telemetry Transport (MQTT)
Introduction to MQ Telemetry Transport (MQTT)Amarjeetsingh Thakur
 
Arduino Interfacing with different sensors and motor
Arduino Interfacing with different sensors and motorArduino Interfacing with different sensors and motor
Arduino Interfacing with different sensors and motorAmarjeetsingh Thakur
 

More from Amarjeetsingh Thakur (20)

Python code for servo control using Raspberry Pi
Python code for servo control using Raspberry PiPython code for servo control using Raspberry Pi
Python code for servo control using Raspberry Pi
 
Python code for Push button using Raspberry Pi
Python code for Push button using Raspberry PiPython code for Push button using Raspberry Pi
Python code for Push button using Raspberry Pi
 
Python code for Buzzer Control using Raspberry Pi
Python code for Buzzer Control using Raspberry PiPython code for Buzzer Control using Raspberry Pi
Python code for Buzzer Control using Raspberry Pi
 
Arduino programming part 2
Arduino programming part 2Arduino programming part 2
Arduino programming part 2
 
Arduino programming part1
Arduino programming part1Arduino programming part1
Arduino programming part1
 
Python openCV codes
Python openCV codesPython openCV codes
Python openCV codes
 
Python Numpy Source Codes
Python Numpy Source CodesPython Numpy Source Codes
Python Numpy Source Codes
 
Steemit html blog
Steemit html blogSteemit html blog
Steemit html blog
 
Python OpenCV Real Time projects
Python OpenCV Real Time projectsPython OpenCV Real Time projects
Python OpenCV Real Time projects
 
Adafruit_IoT_Platform
Adafruit_IoT_PlatformAdafruit_IoT_Platform
Adafruit_IoT_Platform
 
Core python programming tutorial
Core python programming tutorialCore python programming tutorial
Core python programming tutorial
 
Python openpyxl
Python openpyxlPython openpyxl
Python openpyxl
 
Introduction to Internet of Things (IoT)
Introduction to Internet of Things (IoT)Introduction to Internet of Things (IoT)
Introduction to Internet of Things (IoT)
 
Introduction to Node MCU
Introduction to Node MCUIntroduction to Node MCU
Introduction to Node MCU
 
Introduction to Things board (An Open Source IoT Cloud Platform)
Introduction to Things board (An Open Source IoT Cloud Platform)Introduction to Things board (An Open Source IoT Cloud Platform)
Introduction to Things board (An Open Source IoT Cloud Platform)
 
Introduction to MQ Telemetry Transport (MQTT)
Introduction to MQ Telemetry Transport (MQTT)Introduction to MQ Telemetry Transport (MQTT)
Introduction to MQ Telemetry Transport (MQTT)
 
Arduino Interfacing with different sensors and motor
Arduino Interfacing with different sensors and motorArduino Interfacing with different sensors and motor
Arduino Interfacing with different sensors and motor
 
Image processing in MATLAB
Image processing in MATLABImage processing in MATLAB
Image processing in MATLAB
 
Introduction to Arduino
Introduction to ArduinoIntroduction to Arduino
Introduction to Arduino
 
Introduction to Arduino
Introduction to ArduinoIntroduction to Arduino
Introduction to Arduino
 

Recently uploaded

College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxhumanexperienceaaa
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingrknatarajan
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...Call Girls in Nagpur High Profile
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).pptssuser5c9d4b1
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Call Girls in Nagpur High Profile
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 

Recently uploaded (20)

College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 

“Introduction to MATLAB & SIMULINK”