Which computer programming language are MATLAB R2015b and R2016b written in?

74 ビュー (過去 30 日間)
Yin Shi
Yin Shi 2016 年 4 月 20 日
コメント済み: Walter Roberson 2017 年 9 月 21 日
Which computer programming language are MATLAB R2015b and R2016b written in?

回答 (2 件)

James Tursa
James Tursa 2016 年 4 月 20 日
編集済み: James Tursa 2016 年 4 月 20 日
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.

Meade
Meade 2016 年 4 月 20 日
編集済み: Stephen23 2016 年 4 月 21 日
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 件のコメント
Tyler Shepard
Tyler Shepard 2017 年 9 月 21 日
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
Walter Roberson 2017 年 9 月 21 日
LAPACK is written in Fortran . http://www.netlib.org/lapack/
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.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeFortran with MATLAB についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by