Fortran77のMEX化に関して
1 view (last 30 days)
Show older comments
Fortran77ファイルをMEX化しようと考え、
mex 〇〇.f
とコマンドラインで入力したところ
サポートされているコンパイラまたは SDK が見つかりません。オプションについて は、 http://www.mathworks.com/support/compilers/R2016b/win64.html を参照してください。
とエラーが表示されました。これは、FortranのコンパイラをインストールしてMATLABに紐づけ?すればよいのでしょうか。
Accepted Answer
michio
on 14 Jun 2018
おっしゃる通りです。使用されているMATLABバージョンで対応している Fortran コンパイラーをインストールし、MATLAB上で
mex -setup FORTRAN
と実行して頂ければ設定完了です。
3 Comments
michio
on 14 Jun 2018
Gfortran は残念ながら対応しておりません。
R2016bで対応しているコンパイラ一覧 https://jp.mathworks.com/content/dam/mathworks/mathworks-dot-com/support/sysreq/files/SystemRequirements-Release2016b_SupportedCompilers.pdf
にある通り、Fortranに関しては以下の3つが対応コンパイラとなります。
- Intel Parallel Studio XE 2016 for Fortran 3
- Intel Parallel Studio XE 2015 for Fortran 3
- Intel Visual Fortran Composer XE 2013 3
More Answers (0)
See Also
Categories
Find more on Fortran からの 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!