SlideShare a Scribd company logo
MATLAB
Mr Elaventhan.A, Project Engineer
Pantech ProEd Pvt Ltd, Trichy
Agenda:
• Introduction
• Commands
• Operators
• Functions
• GUI
• How to Generate GUI?
• TMS320C6745 Introduction
• TMS Procedure
• Demo
Introduction
 MATLAB  MATrix LABoratory
 Developed by CleveMoler in 1984 as a teaching tool
 High performance language for technical computing
 Typical uses are,
 numerical computation
 Data analysis ,plotting and visualization
 Graphical user interface building
 Algorithm development and modelling
MATLAB Desktop Tools
 Command Window
 Command History
 Workspace
 Current Directory
 Editor Window
MATLAB Desktop
General Purpose Commands
 clc , clear ,close all
 save
 who , whos
 cd , ls
 disp
 Version
 Pwd
 Floor,round,abs
 date
Clear
 clear removes items from workspace,
freeing up system memory
 Examples of syntax:
 clear
Graph Functions
 plot linear plot
 stem discrete plot
 grid add grid lines
 Xlabel add X-axis label
 Ylabel add Y-axis label
 title add graph title
 Subplot divide figure window
 Figure create new figure window
 Pause wait for user response
Arithmetic Operators
 plus - Plus +
 uplus - Unary plus +
 minus - Minus -
 uminus - Unary minus -
 mtimes - Matrix multiply *
 times - Array multiply .*
 mpower - Matrix power ^
 power - Array power .^
 mldivide - Backslash or left matrix divide 
 Mrdivide - Slash or right matrix divide /
 ldivide - Left array divide .
 rdivide - Right array divide ./
Logical Operators
 Short-circuit logical AND &&
 Short-circuit logical OR ||
 AND - Element-wise logical AND &
 OR - Element-wise logical OR |
 NOT - Logical NOT ~
 XOR - Logical EXCLUSIVE OR
 Any - True if any element of vector is nonzero
 All - True if all elements of vector are nonzero
Bitwise Operators
 bitand - Bit-wise AND.
 bitcmp - Complement bits.
 bitor - Bit-wise OR.
 bitmax - Maximum floating point integer.
 bitxor - Bit-wise XOR.
 bitset - Set bit.
 bitget - Get bit.
 bitshift - Bit-wise shift.
Relational Operator
 < Less than
 <= Less than or equal to
 > Greater than
 >= Greater than or equal to
 == Equal to
 ~= Not equal to
Matrix Creation
 When entering a matrix, separate columns by
spaces or commas; separate rows by semicolons.
For example, typing:
A = [1 2; 3 4]
results in:
A = 1 2
3 4
Elementary Matrices
 eye – Identity matrix---- x= eye(m,n).
 ones – 1’s matrix ---- y=ones(m,n);
 zeros – 0’s matrix ---- z=zeros(m,n);
 magic – generate square matrix – w= magic(4);
 rand – uniformly distributed random numbers -- q=
rand(m,n);
Save And Load The Variable
A=5;
save A A;
load A;
B=1;
C=A+B;
disp(C);
Plot
t=0:0.25:7;
y = sin(2*pi*10*t);
plot(t,y) ;
Plot
t=0:0.25:7;
y = sin(t);
plot(t,y) ;
xlabel('x axis');
ylabel('y axis');
title('Heading');
grid on;
gtext('text');
IF LOOP
a=5;
if a > 6
disp('a is greater');
else
disp('a is smaller');
end
For Loop
a=5;
for i=1:5
a=a+1
end
disp(a);
While Loop
a=5;
while a < 10
a=a+1;
end
disp(a);
GUI
• A graphical user interface (GUI) is a user
interface built with graphical objects, such as
buttons, text fields, sliders, and menus. In
general, these objects already have
meanings to most computer users.
User Interface Controls
• Push Buttons
• Toggle Buttons
• Radio Buttons
• Checkboxes
• Popup Menus
• Edit Text
• Axes
• Static Text
• Figures
GUI Window
Thank You!!
Contact Us
• Con Person:
Sowmiya.S, Event Coordinator
• Con No:
7200045955
8807058158
• Mail Id:
Trichy.DSP@pantechmail.com
Senthilmurugan.m@pantechmail.com

More Related Content

What's hot

Radix sorting
Radix sortingRadix sorting
Radix sorting
Madhawa Gunasekara
 
Matrix Manipulation in Matlab
Matrix Manipulation in MatlabMatrix Manipulation in Matlab
Matrix Manipulation in Matlab
Mohamed Loey
 
SORTTING IN LINEAR TIME - Radix Sort
SORTTING IN LINEAR TIME - Radix SortSORTTING IN LINEAR TIME - Radix Sort
SORTTING IN LINEAR TIME - Radix Sort
Devanshu Taneja
 
Time series predictions using LSTMs
Time series predictions using LSTMsTime series predictions using LSTMs
Time series predictions using LSTMs
Setu Chokshi
 
Doc 20180130-wa0006
Doc 20180130-wa0006Doc 20180130-wa0006
Doc 20180130-wa0006
HarithaRanasinghe
 
MATRIX HASHING WITH TWO LEVEL OF COLLISION RESOLUTION
MATRIX HASHING WITH TWO LEVEL OF COLLISION RESOLUTIONMATRIX HASHING WITH TWO LEVEL OF COLLISION RESOLUTION
MATRIX HASHING WITH TWO LEVEL OF COLLISION RESOLUTION
Nvk Chaitanya
 
The dag representation of basic blocks
The dag representation of basic blocksThe dag representation of basic blocks
The dag representation of basic blocks
Shabeen Taj
 
Information security Seminar #3
Information security Seminar #3 Information security Seminar #3
Information security Seminar #3
Alexander Kolybelnikov
 
Radix Sort
Radix SortRadix Sort
Radix Sort
Faiza Saleem
 
IOEfficientParalleMatrixMultiplication_present
IOEfficientParalleMatrixMultiplication_presentIOEfficientParalleMatrixMultiplication_present
IOEfficientParalleMatrixMultiplication_present
Shubham Joshi
 
Compiler Design
Compiler DesignCompiler Design
Compiler Design
sweetysweety8
 
Algorithms
AlgorithmsAlgorithms
Algorithms
Santosh Rajan
 
Maps&hash tables
Maps&hash tablesMaps&hash tables
Maps&hash tables
Priyanka Rana
 
Doc 20180130-wa0004
Doc 20180130-wa0004Doc 20180130-wa0004
Doc 20180130-wa0004
HarithaRanasinghe
 
Value objects in JS - an ES7 work in progress
Value objects in JS - an ES7 work in progressValue objects in JS - an ES7 work in progress
Value objects in JS - an ES7 work in progress
Brendan Eich
 
JS Responsibilities
JS ResponsibilitiesJS Responsibilities
JS Responsibilities
Brendan Eich
 
Exp 3
Exp 3Exp 3
Volodymyr Lyubinets “Generative models for images”
Volodymyr Lyubinets  “Generative models for images”Volodymyr Lyubinets  “Generative models for images”
Volodymyr Lyubinets “Generative models for images”
Lviv Startup Club
 

What's hot (18)

Radix sorting
Radix sortingRadix sorting
Radix sorting
 
Matrix Manipulation in Matlab
Matrix Manipulation in MatlabMatrix Manipulation in Matlab
Matrix Manipulation in Matlab
 
SORTTING IN LINEAR TIME - Radix Sort
SORTTING IN LINEAR TIME - Radix SortSORTTING IN LINEAR TIME - Radix Sort
SORTTING IN LINEAR TIME - Radix Sort
 
Time series predictions using LSTMs
Time series predictions using LSTMsTime series predictions using LSTMs
Time series predictions using LSTMs
 
Doc 20180130-wa0006
Doc 20180130-wa0006Doc 20180130-wa0006
Doc 20180130-wa0006
 
MATRIX HASHING WITH TWO LEVEL OF COLLISION RESOLUTION
MATRIX HASHING WITH TWO LEVEL OF COLLISION RESOLUTIONMATRIX HASHING WITH TWO LEVEL OF COLLISION RESOLUTION
MATRIX HASHING WITH TWO LEVEL OF COLLISION RESOLUTION
 
The dag representation of basic blocks
The dag representation of basic blocksThe dag representation of basic blocks
The dag representation of basic blocks
 
Information security Seminar #3
Information security Seminar #3 Information security Seminar #3
Information security Seminar #3
 
Radix Sort
Radix SortRadix Sort
Radix Sort
 
IOEfficientParalleMatrixMultiplication_present
IOEfficientParalleMatrixMultiplication_presentIOEfficientParalleMatrixMultiplication_present
IOEfficientParalleMatrixMultiplication_present
 
Compiler Design
Compiler DesignCompiler Design
Compiler Design
 
Algorithms
AlgorithmsAlgorithms
Algorithms
 
Maps&hash tables
Maps&hash tablesMaps&hash tables
Maps&hash tables
 
Doc 20180130-wa0004
Doc 20180130-wa0004Doc 20180130-wa0004
Doc 20180130-wa0004
 
Value objects in JS - an ES7 work in progress
Value objects in JS - an ES7 work in progressValue objects in JS - an ES7 work in progress
Value objects in JS - an ES7 work in progress
 
JS Responsibilities
JS ResponsibilitiesJS Responsibilities
JS Responsibilities
 
Exp 3
Exp 3Exp 3
Exp 3
 
Volodymyr Lyubinets “Generative models for images”
Volodymyr Lyubinets  “Generative models for images”Volodymyr Lyubinets  “Generative models for images”
Volodymyr Lyubinets “Generative models for images”
 

Similar to Matlab

Matlab introduction
Matlab introductionMatlab introduction
Matlab introduction
Satish Gummadi
 
An Introduction to MATLAB for beginners
An Introduction to MATLAB for beginnersAn Introduction to MATLAB for beginners
An Introduction to MATLAB for beginners
Murshida ck
 
Basic MATLAB-Presentation.pptx
Basic MATLAB-Presentation.pptxBasic MATLAB-Presentation.pptx
Basic MATLAB-Presentation.pptx
PremanandS3
 
Lines and planes in space
Lines and planes in spaceLines and planes in space
Lines and planes in space
Faizan Shabbir
 
Matlab introduction
Matlab introductionMatlab introduction
Matlab introduction
ssuser2797e4
 
Introduction to Matlab - Basic Functions
Introduction to Matlab - Basic FunctionsIntroduction to Matlab - Basic Functions
Introduction to Matlab - Basic Functions
joellivz
 
Introduction to Matlab
Introduction to MatlabIntroduction to Matlab
Introduction to Matlab
Amr Rashed
 
Matlab basic and image
Matlab basic and imageMatlab basic and image
Matlab basic and image
Divyanshu Rasauria
 
Matlab introduction
Matlab introductionMatlab introduction
Matlab introduction
Vikash Jakhar
 
Matlab1
Matlab1Matlab1
Matlab1
guest8ba004
 
matlab-130408153714-phpapp02_lab123.ppsx
matlab-130408153714-phpapp02_lab123.ppsxmatlab-130408153714-phpapp02_lab123.ppsx
matlab-130408153714-phpapp02_lab123.ppsx
lekhacce
 
Introduction to Matlab.ppt
Introduction to Matlab.pptIntroduction to Matlab.ppt
Introduction to Matlab.ppt
Ravibabu Kancharla
 
Matlab ppt
Matlab pptMatlab ppt
Matlab ppt
chestialtaff
 
introduction to matlab.pptx
introduction to matlab.pptxintroduction to matlab.pptx
introduction to matlab.pptx
Dr. Thippeswamy S.
 
Introduction to matlab
Introduction to matlabIntroduction to matlab
Introduction to matlab
Khulna University
 
Matlab Tutorial.ppt
Matlab Tutorial.pptMatlab Tutorial.ppt
Matlab Tutorial.ppt
RaviMuthamala1
 
Matlab intro
Matlab introMatlab intro
Matlab intro
Chaitanya Banoth
 
MATLAB for Technical Computing
MATLAB for Technical ComputingMATLAB for Technical Computing
MATLAB for Technical Computing
Naveed Rehman
 
Mat lab workshop
Mat lab workshopMat lab workshop
Mat lab workshop
Vinay Kumar
 
IntroductionToMathematica.pptx
IntroductionToMathematica.pptxIntroductionToMathematica.pptx
IntroductionToMathematica.pptx
MuhammadImran1347
 

Similar to Matlab (20)

Matlab introduction
Matlab introductionMatlab introduction
Matlab introduction
 
An Introduction to MATLAB for beginners
An Introduction to MATLAB for beginnersAn Introduction to MATLAB for beginners
An Introduction to MATLAB for beginners
 
Basic MATLAB-Presentation.pptx
Basic MATLAB-Presentation.pptxBasic MATLAB-Presentation.pptx
Basic MATLAB-Presentation.pptx
 
Lines and planes in space
Lines and planes in spaceLines and planes in space
Lines and planes in space
 
Matlab introduction
Matlab introductionMatlab introduction
Matlab introduction
 
Introduction to Matlab - Basic Functions
Introduction to Matlab - Basic FunctionsIntroduction to Matlab - Basic Functions
Introduction to Matlab - Basic Functions
 
Introduction to Matlab
Introduction to MatlabIntroduction to Matlab
Introduction to Matlab
 
Matlab basic and image
Matlab basic and imageMatlab basic and image
Matlab basic and image
 
Matlab introduction
Matlab introductionMatlab introduction
Matlab introduction
 
Matlab1
Matlab1Matlab1
Matlab1
 
matlab-130408153714-phpapp02_lab123.ppsx
matlab-130408153714-phpapp02_lab123.ppsxmatlab-130408153714-phpapp02_lab123.ppsx
matlab-130408153714-phpapp02_lab123.ppsx
 
Introduction to Matlab.ppt
Introduction to Matlab.pptIntroduction to Matlab.ppt
Introduction to Matlab.ppt
 
Matlab ppt
Matlab pptMatlab ppt
Matlab ppt
 
introduction to matlab.pptx
introduction to matlab.pptxintroduction to matlab.pptx
introduction to matlab.pptx
 
Introduction to matlab
Introduction to matlabIntroduction to matlab
Introduction to matlab
 
Matlab Tutorial.ppt
Matlab Tutorial.pptMatlab Tutorial.ppt
Matlab Tutorial.ppt
 
Matlab intro
Matlab introMatlab intro
Matlab intro
 
MATLAB for Technical Computing
MATLAB for Technical ComputingMATLAB for Technical Computing
MATLAB for Technical Computing
 
Mat lab workshop
Mat lab workshopMat lab workshop
Mat lab workshop
 
IntroductionToMathematica.pptx
IntroductionToMathematica.pptxIntroductionToMathematica.pptx
IntroductionToMathematica.pptx
 

More from Naatchammai Ramanathan

Why english club
Why english club Why english club
Why english club
Naatchammai Ramanathan
 
Spoken bbc
Spoken bbcSpoken bbc
Non-material heritage
Non-material heritageNon-material heritage
Non-material heritage
Naatchammai Ramanathan
 
Pronunciations of different words
Pronunciations of different wordsPronunciations of different words
Pronunciations of different words
Naatchammai Ramanathan
 
Overdose of effective vocabs
Overdose of effective vocabsOverdose of effective vocabs
Overdose of effective vocabs
Naatchammai Ramanathan
 
Designing a world class clasroom by naatchammai ramanathan
Designing a world class clasroom by naatchammai ramanathanDesigning a world class clasroom by naatchammai ramanathan
Designing a world class clasroom by naatchammai ramanathan
Naatchammai Ramanathan
 
Mail merge
Mail mergeMail merge
Uniform assessment system
Uniform assessment system Uniform assessment system
Uniform assessment system
Naatchammai Ramanathan
 
annual day script of a school 2019
annual day script of a school 2019annual day script of a school 2019
annual day script of a school 2019
Naatchammai Ramanathan
 
Workshop for partners_on_the_reporting_process_07.03.2014
Workshop for partners_on_the_reporting_process_07.03.2014Workshop for partners_on_the_reporting_process_07.03.2014
Workshop for partners_on_the_reporting_process_07.03.2014
Naatchammai Ramanathan
 
ad
adad
Standardised ppt on revised model gst law
Standardised ppt on revised model gst lawStandardised ppt on revised model gst law
Standardised ppt on revised model gst law
Naatchammai Ramanathan
 
manet
manet manet
Personality development for english
Personality development for englishPersonality development for english
Personality development for english
Naatchammai Ramanathan
 
Lifi
Lifi Lifi
Image processing-on-matlab-presentation-1
Image processing-on-matlab-presentation-1Image processing-on-matlab-presentation-1
Image processing-on-matlab-presentation-1
Naatchammai Ramanathan
 
Gst ppt-taxguru
Gst ppt-taxguruGst ppt-taxguru
Gst ppt-taxguru
Naatchammai Ramanathan
 
Gst personal
Gst   personalGst   personal
Deep sky astrophotography by naatchammai rm
Deep sky astrophotography by naatchammai rmDeep sky astrophotography by naatchammai rm
Deep sky astrophotography by naatchammai rm
Naatchammai Ramanathan
 
A smart baby watch for monitoring sudden infant review 2 (1)
A smart baby watch for  monitoring sudden infant review 2 (1)A smart baby watch for  monitoring sudden infant review 2 (1)
A smart baby watch for monitoring sudden infant review 2 (1)
Naatchammai Ramanathan
 

More from Naatchammai Ramanathan (20)

Why english club
Why english club Why english club
Why english club
 
Spoken bbc
Spoken bbcSpoken bbc
Spoken bbc
 
Non-material heritage
Non-material heritageNon-material heritage
Non-material heritage
 
Pronunciations of different words
Pronunciations of different wordsPronunciations of different words
Pronunciations of different words
 
Overdose of effective vocabs
Overdose of effective vocabsOverdose of effective vocabs
Overdose of effective vocabs
 
Designing a world class clasroom by naatchammai ramanathan
Designing a world class clasroom by naatchammai ramanathanDesigning a world class clasroom by naatchammai ramanathan
Designing a world class clasroom by naatchammai ramanathan
 
Mail merge
Mail mergeMail merge
Mail merge
 
Uniform assessment system
Uniform assessment system Uniform assessment system
Uniform assessment system
 
annual day script of a school 2019
annual day script of a school 2019annual day script of a school 2019
annual day script of a school 2019
 
Workshop for partners_on_the_reporting_process_07.03.2014
Workshop for partners_on_the_reporting_process_07.03.2014Workshop for partners_on_the_reporting_process_07.03.2014
Workshop for partners_on_the_reporting_process_07.03.2014
 
ad
adad
ad
 
Standardised ppt on revised model gst law
Standardised ppt on revised model gst lawStandardised ppt on revised model gst law
Standardised ppt on revised model gst law
 
manet
manet manet
manet
 
Personality development for english
Personality development for englishPersonality development for english
Personality development for english
 
Lifi
Lifi Lifi
Lifi
 
Image processing-on-matlab-presentation-1
Image processing-on-matlab-presentation-1Image processing-on-matlab-presentation-1
Image processing-on-matlab-presentation-1
 
Gst ppt-taxguru
Gst ppt-taxguruGst ppt-taxguru
Gst ppt-taxguru
 
Gst personal
Gst   personalGst   personal
Gst personal
 
Deep sky astrophotography by naatchammai rm
Deep sky astrophotography by naatchammai rmDeep sky astrophotography by naatchammai rm
Deep sky astrophotography by naatchammai rm
 
A smart baby watch for monitoring sudden infant review 2 (1)
A smart baby watch for  monitoring sudden infant review 2 (1)A smart baby watch for  monitoring sudden infant review 2 (1)
A smart baby watch for monitoring sudden infant review 2 (1)
 

Recently uploaded

Level 3 NCEA - NZ: A Nation In the Making 1872 - 1900 SML.ppt
Level 3 NCEA - NZ: A  Nation In the Making 1872 - 1900 SML.pptLevel 3 NCEA - NZ: A  Nation In the Making 1872 - 1900 SML.ppt
Level 3 NCEA - NZ: A Nation In the Making 1872 - 1900 SML.ppt
Henry Hollis
 
Benner "Expanding Pathways to Publishing Careers"
Benner "Expanding Pathways to Publishing Careers"Benner "Expanding Pathways to Publishing Careers"
Benner "Expanding Pathways to Publishing Careers"
National Information Standards Organization (NISO)
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
Nicholas Montgomery
 
Wound healing PPT
Wound healing PPTWound healing PPT
Wound healing PPT
Jyoti Chand
 
Temple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation resultsTemple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation results
Krassimira Luka
 
Standardized tool for Intelligence test.
Standardized tool for Intelligence test.Standardized tool for Intelligence test.
Standardized tool for Intelligence test.
deepaannamalai16
 
HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.
deepaannamalai16
 
How to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 InventoryHow to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 Inventory
Celine George
 
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
GeorgeMilliken2
 
Bonku-Babus-Friend by Sathyajith Ray (9)
Bonku-Babus-Friend by Sathyajith Ray  (9)Bonku-Babus-Friend by Sathyajith Ray  (9)
Bonku-Babus-Friend by Sathyajith Ray (9)
nitinpv4ai
 
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptxBeyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
EduSkills OECD
 
UGC NET Exam Paper 1- Unit 1:Teaching Aptitude
UGC NET Exam Paper 1- Unit 1:Teaching AptitudeUGC NET Exam Paper 1- Unit 1:Teaching Aptitude
UGC NET Exam Paper 1- Unit 1:Teaching Aptitude
S. Raj Kumar
 
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skillsspot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
haiqairshad
 
B. Ed Syllabus for babasaheb ambedkar education university.pdf
B. Ed Syllabus for babasaheb ambedkar education university.pdfB. Ed Syllabus for babasaheb ambedkar education university.pdf
B. Ed Syllabus for babasaheb ambedkar education university.pdf
BoudhayanBhattachari
 
Pharmaceutics Pharmaceuticals best of brub
Pharmaceutics Pharmaceuticals best of brubPharmaceutics Pharmaceuticals best of brub
Pharmaceutics Pharmaceuticals best of brub
danielkiash986
 
Gender and Mental Health - Counselling and Family Therapy Applications and In...
Gender and Mental Health - Counselling and Family Therapy Applications and In...Gender and Mental Health - Counselling and Family Therapy Applications and In...
Gender and Mental Health - Counselling and Family Therapy Applications and In...
PsychoTech Services
 
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem studentsRHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
Himanshu Rai
 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
PECB
 
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptxBIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
RidwanHassanYusuf
 
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Fajar Baskoro
 

Recently uploaded (20)

Level 3 NCEA - NZ: A Nation In the Making 1872 - 1900 SML.ppt
Level 3 NCEA - NZ: A  Nation In the Making 1872 - 1900 SML.pptLevel 3 NCEA - NZ: A  Nation In the Making 1872 - 1900 SML.ppt
Level 3 NCEA - NZ: A Nation In the Making 1872 - 1900 SML.ppt
 
Benner "Expanding Pathways to Publishing Careers"
Benner "Expanding Pathways to Publishing Careers"Benner "Expanding Pathways to Publishing Careers"
Benner "Expanding Pathways to Publishing Careers"
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
 
Wound healing PPT
Wound healing PPTWound healing PPT
Wound healing PPT
 
Temple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation resultsTemple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation results
 
Standardized tool for Intelligence test.
Standardized tool for Intelligence test.Standardized tool for Intelligence test.
Standardized tool for Intelligence test.
 
HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.
 
How to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 InventoryHow to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 Inventory
 
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
 
Bonku-Babus-Friend by Sathyajith Ray (9)
Bonku-Babus-Friend by Sathyajith Ray  (9)Bonku-Babus-Friend by Sathyajith Ray  (9)
Bonku-Babus-Friend by Sathyajith Ray (9)
 
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptxBeyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
 
UGC NET Exam Paper 1- Unit 1:Teaching Aptitude
UGC NET Exam Paper 1- Unit 1:Teaching AptitudeUGC NET Exam Paper 1- Unit 1:Teaching Aptitude
UGC NET Exam Paper 1- Unit 1:Teaching Aptitude
 
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skillsspot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
 
B. Ed Syllabus for babasaheb ambedkar education university.pdf
B. Ed Syllabus for babasaheb ambedkar education university.pdfB. Ed Syllabus for babasaheb ambedkar education university.pdf
B. Ed Syllabus for babasaheb ambedkar education university.pdf
 
Pharmaceutics Pharmaceuticals best of brub
Pharmaceutics Pharmaceuticals best of brubPharmaceutics Pharmaceuticals best of brub
Pharmaceutics Pharmaceuticals best of brub
 
Gender and Mental Health - Counselling and Family Therapy Applications and In...
Gender and Mental Health - Counselling and Family Therapy Applications and In...Gender and Mental Health - Counselling and Family Therapy Applications and In...
Gender and Mental Health - Counselling and Family Therapy Applications and In...
 
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem studentsRHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
 
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptxBIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
 
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
 

Matlab

  • 1. MATLAB Mr Elaventhan.A, Project Engineer Pantech ProEd Pvt Ltd, Trichy
  • 2. Agenda: • Introduction • Commands • Operators • Functions • GUI • How to Generate GUI? • TMS320C6745 Introduction • TMS Procedure • Demo
  • 3. Introduction  MATLAB  MATrix LABoratory  Developed by CleveMoler in 1984 as a teaching tool  High performance language for technical computing  Typical uses are,  numerical computation  Data analysis ,plotting and visualization  Graphical user interface building  Algorithm development and modelling
  • 4. MATLAB Desktop Tools  Command Window  Command History  Workspace  Current Directory  Editor Window
  • 6. General Purpose Commands  clc , clear ,close all  save  who , whos  cd , ls  disp  Version  Pwd  Floor,round,abs  date
  • 7. Clear  clear removes items from workspace, freeing up system memory  Examples of syntax:  clear
  • 8. Graph Functions  plot linear plot  stem discrete plot  grid add grid lines  Xlabel add X-axis label  Ylabel add Y-axis label  title add graph title  Subplot divide figure window  Figure create new figure window  Pause wait for user response
  • 9. Arithmetic Operators  plus - Plus +  uplus - Unary plus +  minus - Minus -  uminus - Unary minus -  mtimes - Matrix multiply *  times - Array multiply .*  mpower - Matrix power ^  power - Array power .^  mldivide - Backslash or left matrix divide  Mrdivide - Slash or right matrix divide /  ldivide - Left array divide .  rdivide - Right array divide ./
  • 10. Logical Operators  Short-circuit logical AND &&  Short-circuit logical OR ||  AND - Element-wise logical AND &  OR - Element-wise logical OR |  NOT - Logical NOT ~  XOR - Logical EXCLUSIVE OR  Any - True if any element of vector is nonzero  All - True if all elements of vector are nonzero
  • 11. Bitwise Operators  bitand - Bit-wise AND.  bitcmp - Complement bits.  bitor - Bit-wise OR.  bitmax - Maximum floating point integer.  bitxor - Bit-wise XOR.  bitset - Set bit.  bitget - Get bit.  bitshift - Bit-wise shift.
  • 12. Relational Operator  < Less than  <= Less than or equal to  > Greater than  >= Greater than or equal to  == Equal to  ~= Not equal to
  • 13. Matrix Creation  When entering a matrix, separate columns by spaces or commas; separate rows by semicolons. For example, typing: A = [1 2; 3 4] results in: A = 1 2 3 4
  • 14. Elementary Matrices  eye – Identity matrix---- x= eye(m,n).  ones – 1’s matrix ---- y=ones(m,n);  zeros – 0’s matrix ---- z=zeros(m,n);  magic – generate square matrix – w= magic(4);  rand – uniformly distributed random numbers -- q= rand(m,n);
  • 15. Save And Load The Variable A=5; save A A; load A; B=1; C=A+B; disp(C);
  • 17. Plot t=0:0.25:7; y = sin(t); plot(t,y) ; xlabel('x axis'); ylabel('y axis'); title('Heading'); grid on; gtext('text');
  • 18. IF LOOP a=5; if a > 6 disp('a is greater'); else disp('a is smaller'); end
  • 20. While Loop a=5; while a < 10 a=a+1; end disp(a);
  • 21. GUI • A graphical user interface (GUI) is a user interface built with graphical objects, such as buttons, text fields, sliders, and menus. In general, these objects already have meanings to most computer users.
  • 22. User Interface Controls • Push Buttons • Toggle Buttons • Radio Buttons • Checkboxes • Popup Menus • Edit Text • Axes • Static Text • Figures
  • 25.
  • 26. Contact Us • Con Person: Sowmiya.S, Event Coordinator • Con No: 7200045955 8807058158 • Mail Id: Trichy.DSP@pantechmail.com Senthilmurugan.m@pantechmail.com