SlideShare uma empresa Scribd logo
1 de 21
Presented By:
Maria Akther
ID:083-20-119
Dept. : Computer Science
Daffodil International University
MATLAB
  Matlab introduction
 Matlab elements
 Variables
 Matrices
 Loading, saving and plotting
 Matlab Programming language
 Some functions
   Matlab is a program for doing numerical
    computation. It was originally designed for
    solving linear algebra type problems using
    matrices. It’s name is derived from MATrix
    LABoratory.

   Matlab is also a high level programming
    language that currently is widely used as a
    platform for developing tools for Machine
    Learning.
   Some other aspects of Matlab
    -Matlab is an interpreter -> not as fast as
    compiled code
     -Typically quite fast for an interpreted
    language
    -Can be linked to C/C++, JAVA, SQL etc
    -Commercial product, but widely used in
    industry and academia
    -Many algorithms and toolboxes freely
    available
Advantages of MATLAB:
 -Easy to use
 -Predefined Functions
 -Plotting

Disadvantages of MATLAB:
 - Can be slow
 - Commercial Software.
 Command Window
  type commands


 Workspace
  view program
   variables
  double click on a
   variable to see it in the
   array Editor.

 Command History
  view past commands
  Have not to be previously declared
 Variable names can contain up to 63 characters
 Variable names must start with a letter followed
  by letters, digits, and underscores.
 Variable names are case sensitive.
 ans     Default variable name for results
 pi      Value of π
 inf     Infinity
 NaN     Not a number e.g. 0/0
 realmin The smallest usable positive real
  number
 realmax The largest usable positive real
  number
 Assignment              =    a = b (assign b to a)
 Addition         +       a+b
 Subtraction             -    a -b
 Multiplication   * or .*   a*b or a.*b
 Division         / or ./ a/b or a./b
 Power             ^ or .^ a^b or a.^b
 Matlab treats all variables as matrices. A
  matrix can be thought of as an array, in fact,
  that is how it is stored.
 Vectors are special forms of matrices and
  contain only one row OR one column.
 Scalars are matrices with only one row AND
  one column
 A matrix with only one row is called a row
  vector. A row vector can be created in
 Matlab as follows (note the commas):
      » rowvec = [12 , 14 , 63]
   A matrix with only one column is called a column
    vector. A column vector can be created in MATLAB
    as follows (note the semicolons):
        » colvec = [13 ; 45 ; -2]

   A matrix can be created in Matlab as follows (note
    the commas AND semicolons):
              » matrix = [1 , 2 , 3 ; 4 , 5 ,6 ; 7 , 8 , 9]
        t =1:10

t=
 1 2 3 4 5 6 7 8 9 10

        k =2:-0.5:-1

    k=
         2 1.5 1 0.5 0 -0.5 -1
 x = [1 2], y = [4 5], z=[ 0 0]
     A = [ x y]
      1 2 4 5
   B = [x ; y]
     12
     45
   Matlab has a lot of function for plotting data. The basic
    one will plot one vector vs. another. The first one will
    be treated as the abscissa (or x) vector and the
    second as the ordinate (or y) vector. The vectors have
    to be the same length.

        >> plot (time, dist) % plotting versus time
   Create an x-array of 100 samples between 0 and 4π.

   Calculate sin(.) of the x-array

   Plot the y-array
   title(.)



   xlabel(.)

   ylabel(.)
Signal Processing Toolbox™ provides industry-standard algorithms
for analog and digital signal processing (DSP). We can use the
toolbox to visualize signals in time and frequency domains, compute
FFTs for spectral analysis, design FIR and IIR filters, and implement
convolution, modulation, re-sampling, and other signal processing
techniques. Algorithms in the toolbox can be used as a basis for
developing custom algorithms for audio and speech processing,
instrumentation, and baseband wireless communications.
   Within Matlab
    Type help at the Matlab prompt or help followed by a
    function name for help on a specific function
   Online
    Online documentation for Matlab at the
    MathWorks website

    http://www.mathworks.com/access/helpdesk/help/techdoc/matlab
    .html
Matlab

Mais conteúdo relacionado

Mais procurados (19)

Lecture 9
Lecture 9Lecture 9
Lecture 9
 
Matlab 1 level_1
Matlab 1 level_1Matlab 1 level_1
Matlab 1 level_1
 
Digital communication lab lectures
Digital communication lab  lecturesDigital communication lab  lectures
Digital communication lab lectures
 
MATLAB
MATLABMATLAB
MATLAB
 
Matlab tutorial
Matlab tutorialMatlab tutorial
Matlab tutorial
 
Programming in python
Programming in pythonProgramming in python
Programming in python
 
Data structure and algorithm using java
Data structure and algorithm using javaData structure and algorithm using java
Data structure and algorithm using java
 
Lecture one
Lecture oneLecture one
Lecture one
 
Lecture three
Lecture threeLecture three
Lecture three
 
Introduction to MATLAB
Introduction to MATLABIntroduction to MATLAB
Introduction to MATLAB
 
Mbd2
Mbd2Mbd2
Mbd2
 
Image processing with matlab
Image processing with matlabImage processing with matlab
Image processing with matlab
 
Data Applied: Clustering
Data Applied: ClusteringData Applied: Clustering
Data Applied: Clustering
 
The dag representation of basic blocks
The dag representation of basic blocksThe dag representation of basic blocks
The dag representation of basic blocks
 
Chapter 2 Basics of MATLAB
Chapter 2 Basics of MATLABChapter 2 Basics of MATLAB
Chapter 2 Basics of MATLAB
 
Applications of data structures
Applications of data structuresApplications of data structures
Applications of data structures
 
Matlab - Introduction and Basics
Matlab - Introduction and BasicsMatlab - Introduction and Basics
Matlab - Introduction and Basics
 
Scilab
Scilab Scilab
Scilab
 
Stack and Heap
Stack and HeapStack and Heap
Stack and Heap
 

Destaque

Destaque (7)

Relation model part 1
Relation model part 1Relation model part 1
Relation model part 1
 
Introduction to the Relational Model and SQL
Introduction to the Relational Model and SQLIntroduction to the Relational Model and SQL
Introduction to the Relational Model and SQL
 
Relational model
Relational modelRelational model
Relational model
 
CPSC 125 Ch 4 Sec 1
CPSC 125 Ch 4 Sec 1CPSC 125 Ch 4 Sec 1
CPSC 125 Ch 4 Sec 1
 
Dbms ii mca-ch4-relational model-2013
Dbms ii mca-ch4-relational model-2013Dbms ii mca-ch4-relational model-2013
Dbms ii mca-ch4-relational model-2013
 
02 rdbms session02
02 rdbms session0202 rdbms session02
02 rdbms session02
 
Database Systems - Relational Data Model (Chapter 2)
Database Systems - Relational Data Model (Chapter 2)Database Systems - Relational Data Model (Chapter 2)
Database Systems - Relational Data Model (Chapter 2)
 

Semelhante a Matlab

Semelhante a Matlab (20)

MATLAB INTRODUCTION
MATLAB INTRODUCTIONMATLAB INTRODUCTION
MATLAB INTRODUCTION
 
Brief Introduction to Matlab
Brief  Introduction to MatlabBrief  Introduction to Matlab
Brief Introduction to Matlab
 
MatlabIntro (1).ppt
MatlabIntro (1).pptMatlabIntro (1).ppt
MatlabIntro (1).ppt
 
Introduction to matlab
Introduction to matlabIntroduction to matlab
Introduction to matlab
 
Introduction to Matlab.ppt
Introduction to Matlab.pptIntroduction to Matlab.ppt
Introduction to Matlab.ppt
 
From zero to MATLAB hero: Mastering the basics and beyond
From zero to MATLAB hero: Mastering the basics and beyondFrom zero to MATLAB hero: Mastering the basics and beyond
From zero to MATLAB hero: Mastering the basics and beyond
 
Matlab ppt
Matlab pptMatlab ppt
Matlab ppt
 
interfacing matlab with embedded systems
interfacing matlab with embedded systemsinterfacing matlab with embedded systems
interfacing matlab with embedded systems
 
Introduction to Matlab
Introduction to MatlabIntroduction to Matlab
Introduction to Matlab
 
Matlab practical and lab session
Matlab practical and lab sessionMatlab practical and lab session
Matlab practical and lab session
 
MatlabIntro.ppt
MatlabIntro.pptMatlabIntro.ppt
MatlabIntro.ppt
 
MatlabIntro.ppt
MatlabIntro.pptMatlabIntro.ppt
MatlabIntro.ppt
 
MatlabIntro.ppt
MatlabIntro.pptMatlabIntro.ppt
MatlabIntro.ppt
 
Matlab intro
Matlab introMatlab intro
Matlab intro
 
MatlabIntro.ppt
MatlabIntro.pptMatlabIntro.ppt
MatlabIntro.ppt
 
Matlab introduction
Matlab introductionMatlab introduction
Matlab introduction
 
Matlab Introduction
Matlab IntroductionMatlab Introduction
Matlab Introduction
 
Matlab intro
Matlab introMatlab intro
Matlab intro
 
Matlab Tutorial.ppt
Matlab Tutorial.pptMatlab Tutorial.ppt
Matlab Tutorial.ppt
 
Matlab
MatlabMatlab
Matlab
 

Mais de Maria Akther

Iso12207:2008 standard
Iso12207:2008 standardIso12207:2008 standard
Iso12207:2008 standardMaria Akther
 
Error detection and correction
Error detection and correctionError detection and correction
Error detection and correctionMaria Akther
 
Boundary Extraction
Boundary ExtractionBoundary Extraction
Boundary ExtractionMaria Akther
 
Impact of supply chain management
Impact of supply chain managementImpact of supply chain management
Impact of supply chain managementMaria Akther
 

Mais de Maria Akther (6)

Prolocalizer
ProlocalizerProlocalizer
Prolocalizer
 
Iso12207:2008 standard
Iso12207:2008 standardIso12207:2008 standard
Iso12207:2008 standard
 
Error detection and correction
Error detection and correctionError detection and correction
Error detection and correction
 
Boundary Extraction
Boundary ExtractionBoundary Extraction
Boundary Extraction
 
Impact of supply chain management
Impact of supply chain managementImpact of supply chain management
Impact of supply chain management
 
Open64 compiler
Open64 compilerOpen64 compiler
Open64 compiler
 

Último

Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...HostedbyConfluent
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...gurkirankumar98700
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 

Último (20)

Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 

Matlab

  • 1. Presented By: Maria Akther ID:083-20-119 Dept. : Computer Science Daffodil International University
  • 3.  Matlab introduction  Matlab elements  Variables  Matrices  Loading, saving and plotting  Matlab Programming language  Some functions
  • 4. Matlab is a program for doing numerical computation. It was originally designed for solving linear algebra type problems using matrices. It’s name is derived from MATrix LABoratory.  Matlab is also a high level programming language that currently is widely used as a platform for developing tools for Machine Learning.
  • 5. Some other aspects of Matlab -Matlab is an interpreter -> not as fast as compiled code -Typically quite fast for an interpreted language -Can be linked to C/C++, JAVA, SQL etc -Commercial product, but widely used in industry and academia -Many algorithms and toolboxes freely available
  • 6. Advantages of MATLAB: -Easy to use -Predefined Functions -Plotting Disadvantages of MATLAB: - Can be slow - Commercial Software.
  • 7.  Command Window type commands  Workspace view program variables double click on a variable to see it in the array Editor.  Command History view past commands
  • 8.  Have not to be previously declared  Variable names can contain up to 63 characters  Variable names must start with a letter followed by letters, digits, and underscores.  Variable names are case sensitive.
  • 9.  ans Default variable name for results  pi Value of π  inf Infinity  NaN Not a number e.g. 0/0  realmin The smallest usable positive real number  realmax The largest usable positive real number
  • 10.  Assignment = a = b (assign b to a)  Addition + a+b  Subtraction - a -b  Multiplication * or .* a*b or a.*b  Division / or ./ a/b or a./b  Power ^ or .^ a^b or a.^b
  • 11.  Matlab treats all variables as matrices. A matrix can be thought of as an array, in fact, that is how it is stored.  Vectors are special forms of matrices and contain only one row OR one column.  Scalars are matrices with only one row AND one column  A matrix with only one row is called a row vector. A row vector can be created in  Matlab as follows (note the commas): » rowvec = [12 , 14 , 63]
  • 12. A matrix with only one column is called a column vector. A column vector can be created in MATLAB as follows (note the semicolons): » colvec = [13 ; 45 ; -2]  A matrix can be created in Matlab as follows (note the commas AND semicolons): » matrix = [1 , 2 , 3 ; 4 , 5 ,6 ; 7 , 8 , 9]
  • 13. t =1:10 t= 1 2 3 4 5 6 7 8 9 10  k =2:-0.5:-1 k= 2 1.5 1 0.5 0 -0.5 -1
  • 14.  x = [1 2], y = [4 5], z=[ 0 0]  A = [ x y] 1 2 4 5  B = [x ; y] 12 45
  • 15. Matlab has a lot of function for plotting data. The basic one will plot one vector vs. another. The first one will be treated as the abscissa (or x) vector and the second as the ordinate (or y) vector. The vectors have to be the same length. >> plot (time, dist) % plotting versus time
  • 16. Create an x-array of 100 samples between 0 and 4π.  Calculate sin(.) of the x-array  Plot the y-array
  • 17. title(.)  xlabel(.)  ylabel(.)
  • 18. Signal Processing Toolbox™ provides industry-standard algorithms for analog and digital signal processing (DSP). We can use the toolbox to visualize signals in time and frequency domains, compute FFTs for spectral analysis, design FIR and IIR filters, and implement convolution, modulation, re-sampling, and other signal processing techniques. Algorithms in the toolbox can be used as a basis for developing custom algorithms for audio and speech processing, instrumentation, and baseband wireless communications.
  • 19.
  • 20. Within Matlab Type help at the Matlab prompt or help followed by a function name for help on a specific function  Online Online documentation for Matlab at the MathWorks website http://www.mathworks.com/access/helpdesk/help/techdoc/matlab .html