Is it possible to call a matlab file from linux code script?

조회 수: 7 (최근 30일)
Rom
Rom 2013년 8월 1일
Is it possible to call a matlab file from linux code script?
I created .m files on Windows; however, I am using PuTTY on Windows in order to write code in the Linux environment. I would like to call matlab files from within the code.
Would the best solution be to compile the .m files into a standalone application? Or is there a linux command that can call the files?

채택된 답변

Ken Atwell
Ken Atwell 2013년 8월 1일
One way or the other, you will need MATLAB on your Linux box. Assuming your MATLAB code is visible to Linux as well, you can use
matlab -r "command"
to run from the Linux command line; there is more information about startup flags here.
You could use MATLAB Compiler to avoid needing MATLAB on Linux goign forward, but you would still need MATLAB installed on Linux to perform the compilation -- you cannot cross-compile from Windows to Linux using MATLAB Compiler.
  댓글 수: 2
Rom
Rom 2013년 8월 1일
Thank you, I think I get it.
If my m-file is called summmation.m How would I open this file using Linux without having to open Matlab? What command would I use?
Rom
Rom 2013년 8월 1일
In other words, I'd like to run the .m file without having to open in Matlab to run it. Is this possible as a Linux command?

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB Compiler에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by