필터 지우기
필터 지우기

hi, i´m trying to open the cmd.exe in matlab and to execute the dos command from matlab without writing it again in cmd.exe. how can i do this?

조회 수: 20 (최근 30일)
hi, i´m trying to open the cmd.exe in matlab and to execute the dos command from matlab without writing it again in cmd.exe. for exemple: system('cmd.exe'); dos_command = 'cd D:Erica\FASTPlanning\ '; dos(dos_command); matlab is openning cmd.exe and is waitig for a command in cmd.exe but i want matlab to execute the dos command automatically in cmd.exe

답변 (2개)

Walter Roberson
Walter Roberson 2018년 7월 23일
편집: Walter Roberson 2020년 8월 14일
If you need to start an independent process that stays alive while MATLAB continues then use .NET or Java

Muhammad Zayed
Muhammad Zayed 2020년 8월 14일
편집: Muhammad Zayed 2020년 8월 14일
you can use:
!cmd &
it works for me to open the command window from Matlab
Moreover, if you want to excute something in the cmd, you can do it as follows (in my case I want to run an excutable called "Opensees" then type the file name)
!Opensees fileName.tcl &
All the above commands will open and run the excutable in an external commond prompt window. If you wish to run it inside Matalb command window, just remove the "&" symbol at the end.
I hope this helps.
P.S. I am using MATLAB R2018a - academic version
  댓글 수: 1
Walter Roberson
Walter Roberson 2020년 8월 14일
My reading of the question was that the user wanted to be able to start a command shell and have it remain open waiting for commands to be sent to it from MATLAB. The way to do that from Windows is to use .NET assemblies as I linked to before.

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

카테고리

Help CenterFile Exchange에서 Embedded Coder에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by