Copy the text from the command window automatically

조회 수: 32 (최근 30일)
Alikouider
Alikouider 2022년 1월 12일
댓글: Star Strider 2022년 1월 12일
Hello all,
I would like to know the script to copy the text from the command window from matlab
and create an excel file automatically
is it possible?
thanks in adavance for your help and mostly your comprehension
  댓글 수: 1
Rik
Rik 2022년 1월 12일
Copying the contents of the command window is not trivial. It is often much easier to redirect the output of functions before they end up in the command window.
Also, what is the purpose of that excel file? Do you want to store the plain text output of the command window to excel?
Have a read here and here. It will greatly improve your chances of getting an answer.

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

채택된 답변

Star Strider
Star Strider 2022년 1월 12일
The diary function is an option, however if the code is printing to the Command Window, it would likely be easier to print it to a file as well. There are a number of ways to do this, one by opening a file for writing using the fopen function (remember to use fclose to close it later) then using essentially the same fprintf call. Putting the data in a table would then allow it to be written as a table. There many others (such as writematrix) that would then allow writing directly to a file.
.

추가 답변 (0개)

카테고리

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

태그

제품


릴리스

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by