Which computer programming language are MATLAB R2015b and R2016b written in?
80 views (last 30 days)
Show older comments
Which computer programming language are MATLAB R2015b and R2016b written in?
0 Comments
Answers (2)
James Tursa
on 20 Apr 2016
Edited: James Tursa
on 20 Apr 2016
Java for the interface, C++ for computational library stuff, and some 3rd party libraries for some of the matrix algebra BLAS and LAPACK stuff. The BLAS and LAPACK libraries use a Fortran function/subroutine interface (e.g., see www.netlib.org) but are probably written in C/C++ or assembly.
And, some of the supplied functions are written in ... MATLAB.
0 Comments
Meade
on 20 Apr 2016
Edited: Stephen23
on 21 Apr 2016
Matlab is mainly written in Java (interface etc). Many of the operations are written in C or C++. The matrix stuff is based on some pretty old Fortran I think. https://en.wikipedia.org/wiki/MATLAB
4 Comments
Tyler Shepard
on 21 Sep 2017
I believe the matrix math is based on BLAS which has routines written in assembly specified for x84 and AMD64 processors. The rest is written in C(++) and Java, for back end computations, and symbolic algebra objects (object oriented programming).
Walter Roberson
on 21 Sep 2017
MATLAB calls LAPACK and BLAS https://www.mathworks.com/help/matlab/matlab_external/calling-lapack-and-blas-functions-from-mex-files.html
BLAS has a couple of different implementations. For Windows it is included with LAPACK http://www.netlib.org/blas/
MATLAB is also known to call upon Intel's MKL https://www.mathworks.com/matlabcentral/answers/71553-amd-vs-intel-mkl-dll-vs-acml-dll-and-blas-spec-help . The official description https://software.intel.com/en-us/mkl does not say what language MKL is written in; Wikipedia says C/C++ and Fortran.
See Also
Categories
Find more on Fortran with MATLAB in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!