필터 지우기
필터 지우기

Print Messages into Windows Command Window

조회 수: 20 (최근 30일)
Rahul J Hirur
Rahul J Hirur 2022년 6월 3일
댓글: Rahul J Hirur 2022년 6월 4일
Hello all,
I am running a Matlab script in Windows Command Window. I want to print messages into the same windows Command Window where I initiated the Matlab script to run. I am trying to use 'system(echo Hello)' command but it prints the MATLAB Command Prompt in the background but Not in windows Command window.
Is there a way to achieve this way of printing in CMD window?
Has anyone encounter this obstacle before or has anyone tried this approach before?

채택된 답변

Walter Roberson
Walter Roberson 2022년 6월 3일
Use System.Diagnostics.Process to start CMD, and connect up standard input. When appropriate send CMD an ECHO command.
  댓글 수: 1
Rahul J Hirur
Rahul J Hirur 2022년 6월 4일
I tried your solution. It works where it opens up a Windows command prompt and prints the message in Windows command prompt.
The problem is when I open up a command prompt and call the script(seen below) it opens up another new windows command prompt and prints the message in it.
I want it to print the message in the same windows command prompt where I call the m script?
Processx = System.Diagnostics.Process;
Processx.StartInfo.CreateNoWindow=false;
Processx.StartInfo.UseShellExecute = false;
Processx.StartInfo.FileName = 'C:\Windows\System32\cmd.exe';
Processx.StartInfo.LoadUserProfile=true;
Processx.StartInfo.RedirectStandardInput=true;
Start(Processx)
Processx.StandardInput.WriteLine('echo Hello World, from inside matlab');
pause(10)

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

추가 답변 (0개)

카테고리

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

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by