SlideShare ist ein Scribd-Unternehmen logo
1 von 44
Matlab Basic
MATLAB Product Family
2
3
Entering & Quitting MATLAB
• To enter MATLAB double click on the MATLAB icon.
• To Leave MATLAB Simply type quit and press enter.
4
Some Basic Commands
• To check the list of installed toolboxes type
• To clear the screen type
• To move the cursor to upper left corner of the command window type
5
Some Basic Commands (contd…)
• To list the current variables type
• To list the current variables in long form type
• To clear the workspace type
• To remove particular variable from the workspace type
6
Some Basic Commands (contd…)
• To get list of Help topics type
• To get help for any topic type
• To get help for any command type
7
Some Basic Commands (contd…)
• To search command type
• To list the files in a directory type
• To list the Matlab files only type
8
9
Types of MATLAB Variables
• Scalar
array
• Vector
(column vector) or (row vector)
• Matrix
• Character Arrays (Strings)
10
Defining Scalars
Variables are assigned numerical values by
typing the expression directly, for example,
typing
yields:
11
Variable Definitions
We can also assign numerical values to the variables
by typing the expression
yields:
12
Variable Definitions
• After typing the expressions the answers are
echoed back.
• To suppress the echo put semicolon at the end
of the expression.
13
Arithmetic Operators on Scalars
14
• MATLAB utilizes the following arithmetic operators:
Variable Definition (Contd…….)
A variable can be assigned using a formula. For example,
since a was defined previously, the following expression is
valid
yields:
15
Variables in Workspace
• Type who to check the stored variables in workspace.
16
Variables in Workspace
• Type whos to check the stored variables in long form.
17
Complex numbers
• A complex number 3+2i in Matlab is entered in the
following form
18
Complex numbers
• An exponential number 3x10-2 in Matlab is entered in the
following form
19
Exercise#1
Investigate the effect of following commands
20
Defining Vectors
• Row Vectors
• Column Vectors
21
 naaaA ...21



















nb
b
b
B
.
.
.
2
1
Defining Row Vectors
22
To create a row vector A simply type in:
A = [2 0 1 4 7 1 5 6 4]
1 2 3 4 5 6 7 8 9
A(5)A(2)
Defining Row Vectors
23
v = [2 0 1 4 7 1 5 6 4]
1 2 3 4 5 6 7 8 9
A(6:9)A(1:4)
Defining Column Vectors
24
To create a column vector B simply type in:
B = [3; 5; 0; 0; 1; 4; 9; -1; 1]
1
-1
9
4
1
0
0
5
3 1
2
3
4
5
6
7
8
9
B = 9x1 vector
B(5)
B(3)
Defining Column Vectors
25
B = [3; 5; 0; 0; 1; 4; 9; -1; 1]
1
-1
9
4
1
0
0
5
3 1
2
3
4
5
6
7
8
9
9x1 vector
B(7:9)
B(2:5)
B =
Arithmetic Operators (Arrays)
26
Exercise#2
27
Investigate the effect of the following commands:
V=[2 4 7 5] and w=[1 3 8 9]
Exercise#3
28
Investigate the effect of the following commands.
z=[1; 1; 0; 0]
Defining Matrices
29
A Matrix is a mxn array



















mnmm
n
n
aaa
aaa
aaa
M
...
.
.
.
.
.
.
.
.
.
.
.
.
...
...
21
22221
11211
Defining Matrices
30
To enter the matrix







43
21
M
The most obvious ways are to type
or
Defining Matrices
31













0391
8147
4713
1931
N
1 3
3 1
9 1
7 4
7 4
1 9
1 8
3 0
1
2
3
4
5
8
9
6
7
10
11
12
14
15
16
13
N =
N(1,3) or N(9)
N(4,3) or N(12)
N=[1 3 9 1; 2 1 7 4; 7 4 1 8; 1 9 3 0]
Defining Matrices
32













0391
8147
4713
1931
N
1 3
3 1
9 1
7 4
7 4
1 9
1 8
3 0
1
2
3
4
5
8
9
6
7
10
11
12
14
15
16
13
N =
N(1:4)
N(10:12)
N=[1 3 9 1; 2 1 7 4; 7 4 1 8; 1 9 3 0]
Defining Matrices
33













0391
8147
4713
1931
N
1 3
3 1
9 1
7 4
7 4
1 9
1 8
3 0
1
2
3
4
5
8
9
6
7
10
11
12
14
15
16
13
N =
N(1:2,1:2)
N(3:4,3:4)
Defining Matrices
34













0391
8147
4713
1931
N
1 3
3 1
9 1
7 4
7 4
1 9
1 8
3 0
1
2
3
4
5
8
9
6
7
10
11
12
14
15
16
13
N =
N(:,1:2)
Defining Matrices
35













0391
8147
4713
1931
N
1 3
3 1
9 1
7 4
7 4
1 9
1 8
3 0
1
2
3
4
5
8
9
6
7
10
11
12
14
15
16
13
N =
N(3:4,:)
Exercise#4
36
Investigate the effect of the following commands:
M=[1 2; 3 4] N=[-1 3; 5 2]
Exercise#5
37
Investigate the effect of the following commands:







43
21
MM=[1 2; 3 4]
Exercise#6
1) Define a matrix A of dimension 2 x 4 whose (i,j) entry is A(i,j)=i+j
2) Extract two 2 x 2 matrices A1 and A2 out of the matrix A. A1 contains the
first two columns of A, A2 contains the last two columns of A
3) Compute the matrix B to be the sum of A1 and A2
4) Compute the eigen values and eigen vectors of B
5) Compute the determinant of B
6) Compute the inverse of B
7) Compute the rank of B
Defining Character Arrays (Strings)
39
Character arrays are created using single quote delimiter
1 2 3 4 5 6
Defining Character Arrays (Strings)
40
1 2 3 4 5 6
Conversion B/W Numeric & String Arrays
• To convert from numeric to string array
– num2str
• To convert from string array to numeric array
– str2num
41
Numeric to string conversion
42
String to Numeric conversion
43
QUESTIONS
Thank you for your concentration
44

Weitere ähnliche Inhalte

Was ist angesagt?

Advanced functions ppt (Chapter 1) part i
Advanced functions ppt (Chapter 1) part iAdvanced functions ppt (Chapter 1) part i
Advanced functions ppt (Chapter 1) part iTan Yuhang
 
flexible manufacturing system
flexible manufacturing systemflexible manufacturing system
flexible manufacturing systemPAARTH GUPTA
 
Genetic algorithm
Genetic algorithmGenetic algorithm
Genetic algorithmAbba Elijah
 
Basic matlab and matrix
Basic matlab and matrixBasic matlab and matrix
Basic matlab and matrixSaidur Rahman
 
Geometric modeling
Geometric modelingGeometric modeling
Geometric modelingnmahi96
 
Brief Introduction to Matlab
Brief  Introduction to MatlabBrief  Introduction to Matlab
Brief Introduction to MatlabTariq kanher
 
Poset in Relations(Discrete Mathematics)
Poset in Relations(Discrete Mathematics)Poset in Relations(Discrete Mathematics)
Poset in Relations(Discrete Mathematics)Rachana Pathak
 
Python For Data Science Cheat Sheet
Python For Data Science Cheat SheetPython For Data Science Cheat Sheet
Python For Data Science Cheat SheetKarlijn Willems
 
GRE - Coordinate Geometry
GRE - Coordinate GeometryGRE - Coordinate Geometry
GRE - Coordinate GeometryGeorge Prep
 
Geometric Modeling
Geometric Modeling Geometric Modeling
Geometric Modeling illpa
 
PERFORMANCE AND ANALYSIS OF MILLING TOOLS DYNAMOMETER
	PERFORMANCE AND ANALYSIS OF MILLING TOOLS DYNAMOMETER	PERFORMANCE AND ANALYSIS OF MILLING TOOLS DYNAMOMETER
PERFORMANCE AND ANALYSIS OF MILLING TOOLS DYNAMOMETER sathish sak
 

Was ist angesagt? (20)

Advanced functions ppt (Chapter 1) part i
Advanced functions ppt (Chapter 1) part iAdvanced functions ppt (Chapter 1) part i
Advanced functions ppt (Chapter 1) part i
 
flexible manufacturing system
flexible manufacturing systemflexible manufacturing system
flexible manufacturing system
 
numerical methods
numerical methodsnumerical methods
numerical methods
 
MATLAB Programming
MATLAB Programming MATLAB Programming
MATLAB Programming
 
Genetic algorithm
Genetic algorithmGenetic algorithm
Genetic algorithm
 
Bisection
BisectionBisection
Bisection
 
Basic matlab and matrix
Basic matlab and matrixBasic matlab and matrix
Basic matlab and matrix
 
Geometric modeling
Geometric modelingGeometric modeling
Geometric modeling
 
Matlab plotting
Matlab plottingMatlab plotting
Matlab plotting
 
MATLAB INTRODUCTION
MATLAB INTRODUCTIONMATLAB INTRODUCTION
MATLAB INTRODUCTION
 
Brief Introduction to Matlab
Brief  Introduction to MatlabBrief  Introduction to Matlab
Brief Introduction to Matlab
 
Poset in Relations(Discrete Mathematics)
Poset in Relations(Discrete Mathematics)Poset in Relations(Discrete Mathematics)
Poset in Relations(Discrete Mathematics)
 
Dda algorithm
Dda algorithmDda algorithm
Dda algorithm
 
Python For Data Science Cheat Sheet
Python For Data Science Cheat SheetPython For Data Science Cheat Sheet
Python For Data Science Cheat Sheet
 
GRE - Coordinate Geometry
GRE - Coordinate GeometryGRE - Coordinate Geometry
GRE - Coordinate Geometry
 
Matrix
MatrixMatrix
Matrix
 
CADM-Unit 1/INTRODUCTION
CADM-Unit 1/INTRODUCTIONCADM-Unit 1/INTRODUCTION
CADM-Unit 1/INTRODUCTION
 
NUMERICAL METHOD
NUMERICAL METHODNUMERICAL METHOD
NUMERICAL METHOD
 
Geometric Modeling
Geometric Modeling Geometric Modeling
Geometric Modeling
 
PERFORMANCE AND ANALYSIS OF MILLING TOOLS DYNAMOMETER
	PERFORMANCE AND ANALYSIS OF MILLING TOOLS DYNAMOMETER	PERFORMANCE AND ANALYSIS OF MILLING TOOLS DYNAMOMETER
PERFORMANCE AND ANALYSIS OF MILLING TOOLS DYNAMOMETER
 

Andere mochten auch

Introduction to matlab
Introduction to matlabIntroduction to matlab
Introduction to matlabSantosh V
 
Matlab introduction
Matlab introductionMatlab introduction
Matlab introductionAmeen San
 
Matlab Introduction by Jiing
Matlab Introduction by JiingMatlab Introduction by Jiing
Matlab Introduction by Jiingjiing deng
 
Matlab Introduction
Matlab IntroductionMatlab Introduction
Matlab IntroductionDaniel Moore
 
Introduction to matlab lecture 4 of 4
Introduction to matlab lecture 4 of 4Introduction to matlab lecture 4 of 4
Introduction to matlab lecture 4 of 4Randa Elanwar
 
Introduction to Matlab
Introduction to MatlabIntroduction to Matlab
Introduction to MatlabAmr Rashed
 

Andere mochten auch (9)

Introduction to matlab
Introduction to matlabIntroduction to matlab
Introduction to matlab
 
Introduction to matlab
Introduction to matlabIntroduction to matlab
Introduction to matlab
 
Matlab introduction
Matlab introductionMatlab introduction
Matlab introduction
 
Matlab Introduction by Jiing
Matlab Introduction by JiingMatlab Introduction by Jiing
Matlab Introduction by Jiing
 
Introduction to matlab
Introduction to matlabIntroduction to matlab
Introduction to matlab
 
Matlab Introduction
Matlab IntroductionMatlab Introduction
Matlab Introduction
 
Introduction to matlab lecture 4 of 4
Introduction to matlab lecture 4 of 4Introduction to matlab lecture 4 of 4
Introduction to matlab lecture 4 of 4
 
Introduction to Matlab
Introduction to MatlabIntroduction to Matlab
Introduction to Matlab
 
Matlab ppt
Matlab pptMatlab ppt
Matlab ppt
 

Ähnlich wie Matlab Basic Commands

Matlab ch1 (3)
Matlab ch1 (3)Matlab ch1 (3)
Matlab ch1 (3)mohsinggg
 
An Introduction to MATLAB for beginners
An Introduction to MATLAB for beginnersAn Introduction to MATLAB for beginners
An Introduction to MATLAB for beginnersMurshida ck
 
Raushan's MATLB PPT..pptx
Raushan's MATLB PPT..pptxRaushan's MATLB PPT..pptx
Raushan's MATLB PPT..pptxhmghj
 
l1.ppt
l1.pptl1.ppt
l1.pptImXaib
 
Welcome to Introduction to Algorithms, Spring 2004
Welcome to Introduction to Algorithms, Spring 2004Welcome to Introduction to Algorithms, Spring 2004
Welcome to Introduction to Algorithms, Spring 2004jeronimored
 
TRAINING PROGRAMME ON MATLAB ASSOCIATE EXAM (1).pptx
TRAINING PROGRAMME ON MATLAB  ASSOCIATE EXAM (1).pptxTRAINING PROGRAMME ON MATLAB  ASSOCIATE EXAM (1).pptx
TRAINING PROGRAMME ON MATLAB ASSOCIATE EXAM (1).pptxanaveenkumar4
 
Introduction to Matlab - Basic Functions
Introduction to Matlab - Basic FunctionsIntroduction to Matlab - Basic Functions
Introduction to Matlab - Basic Functionsjoellivz
 
Importance of matlab
Importance of matlabImportance of matlab
Importance of matlabkrajeshk1980
 
Introduction of Algorithm.pdf
Introduction of Algorithm.pdfIntroduction of Algorithm.pdf
Introduction of Algorithm.pdfLaxmiMobile1
 

Ähnlich wie Matlab Basic Commands (20)

Matlab introduction
Matlab introductionMatlab introduction
Matlab introduction
 
Matlab ch1 (3)
Matlab ch1 (3)Matlab ch1 (3)
Matlab ch1 (3)
 
An Introduction to MATLAB for beginners
An Introduction to MATLAB for beginnersAn Introduction to MATLAB for beginners
An Introduction to MATLAB for beginners
 
Raushan's MATLB PPT..pptx
Raushan's MATLB PPT..pptxRaushan's MATLB PPT..pptx
Raushan's MATLB PPT..pptx
 
l1.ppt
l1.pptl1.ppt
l1.ppt
 
Matlab introduction
Matlab introductionMatlab introduction
Matlab introduction
 
l1.ppt
l1.pptl1.ppt
l1.ppt
 
l1.ppt
l1.pptl1.ppt
l1.ppt
 
Welcome to Introduction to Algorithms, Spring 2004
Welcome to Introduction to Algorithms, Spring 2004Welcome to Introduction to Algorithms, Spring 2004
Welcome to Introduction to Algorithms, Spring 2004
 
presentation.pptx
presentation.pptxpresentation.pptx
presentation.pptx
 
TRAINING PROGRAMME ON MATLAB ASSOCIATE EXAM (1).pptx
TRAINING PROGRAMME ON MATLAB  ASSOCIATE EXAM (1).pptxTRAINING PROGRAMME ON MATLAB  ASSOCIATE EXAM (1).pptx
TRAINING PROGRAMME ON MATLAB ASSOCIATE EXAM (1).pptx
 
Introduction to Matlab - Basic Functions
Introduction to Matlab - Basic FunctionsIntroduction to Matlab - Basic Functions
Introduction to Matlab - Basic Functions
 
Matlab-1.pptx
Matlab-1.pptxMatlab-1.pptx
Matlab-1.pptx
 
Importance of matlab
Importance of matlabImportance of matlab
Importance of matlab
 
Matlab Tutorial.ppt
Matlab Tutorial.pptMatlab Tutorial.ppt
Matlab Tutorial.ppt
 
R part I
R part IR part I
R part I
 
Introduction of Algorithm.pdf
Introduction of Algorithm.pdfIntroduction of Algorithm.pdf
Introduction of Algorithm.pdf
 
Matlab ppt
Matlab pptMatlab ppt
Matlab ppt
 
Learn Matlab
Learn MatlabLearn Matlab
Learn Matlab
 
sol43.pdf
sol43.pdfsol43.pdf
sol43.pdf
 

Kürzlich hochgeladen

Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...Sapna Thakur
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpinRaunakKeshri1
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...PsychoTech Services
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024Janet Corral
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajanpragatimahajan3
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfchloefrazer622
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 

Kürzlich hochgeladen (20)

Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajan
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdf
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 

Matlab Basic Commands