As of 2020[update], MATLAB has more than four million users worldwide.[19] They come from various backgrounds of engineering, science, and economics. As of 2017[update], more than 5000 global colleges and universities use MATLAB to support instruction and research.[20]
Before version 1.0, MATLAB "was not a programming language; it was a simple interactive matrix calculator. There were no programs, no toolboxes, no graphics. And no ODEs or FFTs."[23]
The first early version of MATLAB was completed in the late 1970s.[21] The software was disclosed to the public for the first time in February 1979 at the Naval Postgraduate School in California.[22] Early versions of MATLAB were simple matrix calculators with 71 pre-built functions.[24] At the time, MATLAB was distributed for free[25][26] to universities.[27] Moler would leave copies at universities he visited and the software developed a strong following in the math departments of university campuses.[28]: 5
In the 1980s, Cleve Moler met John N. Little. They decided to reprogram MATLAB in C and market it for the IBMdesktops that were replacing mainframe computers at the time.[21] John Little and programmer Steve Bangert re-programmed MATLAB in C, created the MATLAB programming language, and developed features for toolboxes.[22]
By the end of the 1980s, several hundred copies of MATLAB had been sold to universities for student use.[22] The software was popularized largely thanks to toolboxes created by experts in various fields for performing specialized mathematical tasks.[25] Many of the toolboxes were developed as a result of Stanford students that used MATLAB in academia, then brought the software with them to the private sector.[22]
In 2000, MathWorks added a Fortran-based library for linear algebra in MATLAB 6, replacing the software's original LINPACK and EISPACK subroutines that were in C.[24] MATLAB's Parallel Computing Toolbox was released at the 2004 Supercomputing Conference and support for graphics processing units (GPUs) was added to it in 2010.[24]
By 2016, MATLAB had introduced several technical and user interface improvements, including the MATLAB Live Editor notebook, and other features.[24]
Release history
For a complete list of changes of both MATLAB an official toolboxes, check MATLAB previous releases.[33]
Versions of the MATLAB product family
Name of release
MATLAB
Simulink, Stateflow (MATLAB attachments)
Year
Volume 8
5.0
1996
Volume 9
5.1
1997
R9.1
5.1.1
1997
R10
5.2
1998
R10.1
5.2.1
1998
R11
5.3
1999
R11.1
5.3.1
1999
R12
6.0
2000
R12.1
6.1
2001
R13
6.5
2002
R13SP1
6.5.1
2003
R13SP2
6.5.2
R14
7
6.0
2004
R14SP1
7.0.1
6.1
R14SP2
7.0.4
6.2
2005
R14SP3
7.1
6.3
R2006a
7.2
6.4
2006
R2006b
7.3
6.5
R2007a
7.4
6.6
2007
R2007b
7.5
7.0
R2008a
7.6
7.1
2008
R2008b
7.7
7.2
R2009a
7.8
7.3
2009
R2009b
7.9
7.4
R2010a
7.10
7.5
2010
R2010b
7.11
7.6
R2011a
7.12
7.7
2011
R2011b
7.13
7.8
R2012a
7.14
7.9
2012
R2012b
8.0
8.0
R2013a
8.1
8.1
2013
R2013b
8.2
8.2
R2014a
8.3
8.3
2014
R2014b
8.4
8.4
R2015a
8.5
8.5
2015
R2015b
8.6
8.6
R2016a
9.0
8.7
2016
R2016b
9.1
8.8
R2017a
9.2
8.9
2017
R2017b
9.3
9.0
R2018a
9.4
9.1
2018
R2018b
9.5
9.2
R2019a
9.6
9.3
2019
R2019b
9.7
10.0
R2020a
9.8
10.1
2020
R2020b
9.9
10.2
R2021a
9.10
10.3
2021
R2021b
9.11
10.4
R2022a
9.12
10.5
2022
R2022b
9.13
10.6
R2023a
9.14
10.7
2023
R2023b
23.2
23.2
R2024a
24.1
24.1
2024
R2024b
24.2
24.2
R2025a
25.1
25.1
2025
Syntax
The MATLAB application is built around the MATLAB programming language.
Common usage of the MATLAB application involves using the "Command Window" as an interactive mathematical shell or executing text files containing MATLAB code.[34]
MATLAB is a weakly typed programming language because types are implicitly converted.[35] It is an inferredtyped language because variables can be assigned without declaring their type, except if they are to be treated as symbolic objects,[36] and that their type can change.
Values can come from constants, from computation involving values of other variables, or from the output of a function.
A simple array is defined using the colon syntax: initial:increment:terminator. For instance:
>> array=1:2:9array = 1 3 5 7 9
defines a variable named array (or assigns a new value to an existing variable with the name array) which is an array consisting of the values 1, 3, 5, 7, and 9. That is, the array starts at 1 (the initial value), increments with each step from the previous value by 2 (the increment value), and stops once it reaches (or is about to exceed) 9 (the terminator value).
The increment value can actually be left out of this syntax (along with one of the colons), to use a default value of 1.
>> ari=1:5ari = 1 2 3 4 5
assigns to the variable named ari an array with the values 1, 2, 3, 4, and 5, since the default value of 1 is used as the increment.
Indexing is one-based,[37] which is the usual convention for matrices in mathematics, unlike zero-based indexing commonly used in other programming languages such as C, C++, and Java.
Matrices can be defined by separating the elements of a row with blank space or comma and using a semicolon to separate the rows. The list of elements should be surrounded by square brackets []. Parentheses () are used to access elements and subarrays (they are also used to denote a function argument list).
Sets of indices can be specified by expressions such as 2:4, which evaluates to [2, 3, 4]. For example, a submatrix taken from rows 2 through 4 and columns 3 through 4 can be written as:
>> A(2:4,3:4)ans = 11 8 7 12 14 1
A square identity matrix of size n can be generated using the function eye, and matrices of any size with zeros or ones can be generated with the functions zeros and ones, respectively.
Transposing a vector or a matrix is done either by the function transpose or by adding dot-prime after the matrix (without the dot, prime will perform conjugate transpose for complex arrays):
Most functions accept arrays as input and operate element-wise on each element. For example, mod(2*J,n) will multiply every element in J by 2, and then reduce each element modulo n. MATLAB does include standard for and while loops, but (as in other similar applications such as APL and R), using the vectorized notation is encouraged and is often faster to execute. The following code, excerpted from the function magic.m, creates a magic squareM for odd values of n (MATLAB function meshgrid is used here to generate square matrices I and J containing ):
MATLAB supports structure data types.[38] Since all variables in MATLAB are arrays, a more adequate name is "structure array", where each element of the array has the same field names. In addition, MATLAB supports dynamic field names[39] (field look-ups by name, field manipulations, etc.).
Functions
When creating a MATLAB function, the name of the file should match the name of the first function in the file. Valid function names begin with an alphabetic character, and can contain letters, numbers, or underscores. Variables and functions are case sensitive.[40]
rgbImage=imread('ecg.png');grayImage=rgb2gray(rgbImage);% for non-indexed imageslevel=graythresh(grayImage);% threshold for converting image to binary, binaryImage=im2bw(grayImage,level);% Extract the individual red, green, and blue color channels.redChannel=rgbImage(:,:,1);greenChannel=rgbImage(:,:,2);blueChannel=rgbImage(:,:,3);% Make the black parts pure red.redChannel(~binaryImage)=255;greenChannel(~binaryImage)=0;blueChannel(~binaryImage)=0;% Now recombine to form the output image.rgbImageOut=cat(3,redChannel,greenChannel,blueChannel);imshow(rgbImageOut);
Function handles
MATLAB supports elements of lambda calculus by introducing function handles,[41] or function references, which are implemented either in .m files or anonymous[42]/nested functions.[43]
Classes and object-oriented programming
MATLAB supports object-oriented programming including classes, inheritance, virtual dispatch, packages, pass-by-value semantics, and pass-by-reference semantics.[44] However, the syntax and calling conventions are significantly different from other languages. MATLAB has value classes and reference classes, depending on whether the class has handle as a super-class (for reference classes) or not (for value classes).[45]
Method call behavior is different between value and reference classes. For example, a call to a method:
object.method();
can alter any member of object only if object is an instance of a reference class, otherwise value class methods must return a new instance if it needs to modify the object.
MATLAB has tightly integrated graph-plotting features. For example, the function plot can be used to produce a graph from two vectors x and y. The code:
This code produces a wireframe 3D plot of the two-dimensional unnormalized sinc function:
This code produces a surface 3D plot of the two-dimensional unnormalized sinc function:
MATLAB supports developing graphical user interface (GUI) applications.[46] UIs can be generated either programmatically or using visual design environments such as GUIDE and App Designer.[47][48]
MATLAB and other languages
MATLAB can call functions and subroutines written in the programming languages C or Fortran.[49] A wrapper function is created allowing MATLAB data types to be passed and returned. MEX files (MATLAB executables) are the dynamically loadable object files created by compiling such functions.[50][51] Since 2014 increasing two-way interfacing with Python was being added.[52][53]
Libraries written in Perl, Java, ActiveX or .NET can be directly called from MATLAB,[54][55] and many MATLAB libraries (for example XML or SQL support) are implemented as wrappers around Java or ActiveX libraries. Calling MATLAB from Java is more complicated, but can be done with a MATLAB toolbox[56] which is sold separately by MathWorks, or using an undocumented mechanism called JMI (Java-to-MATLAB Interface),[57][58] (which should not be confused with the unrelated Java Metadata Interface that is also called JMI). Official MATLAB API for Java was added in 2016.[59]
As alternatives to the MuPAD based Symbolic Math Toolbox available from MathWorks, MATLAB can be connected to Maple or Mathematica.[60][61]
Libraries also exist to import and export MathML.[62]
Relations to US sanctions
In 2020, MATLAB withdrew services from two Chinese universities as a result of US sanctions. The universities said this will be responded to by increased use of open-source alternatives and by developing domestic alternatives.[63]
^Bezanson, Jeff; Karpinski, Stefan; Shah, Viral; Edelman, Alan (February 14, 2012). "Why We Created Julia". Julia Language. Retrieved December 1, 2016.
^Eaton, John W. (May 21, 2001). "Octave: Past, Present, and Future"(PDF). Texas-Wisconsin Modeling and Control Consortium. Archived from the original(PDF) on August 9, 2017. Retrieved December 1, 2016.
^"History". Scilab. Archived from the original on December 1, 2016. Retrieved December 1, 2016.
^Weitzel, Michael (September 1, 2006). "MathML import/export". MathWorks - File Exchange. Archived from the original on February 25, 2011. Retrieved August 14, 2013.