필터 지우기
필터 지우기

Matlab command history question

조회 수: 4 (최근 30일)
Hossein
Hossein 2015년 7월 17일
편집: Azzi Abdelmalek 2015년 7월 17일
Hi everyone,
is there any way to recall a command of a long time ago fast and without searching back day by day or is there any log file which saves the command history externally in R2014a?
many thanks in advance

답변 (3개)

Sean de Wolski
Sean de Wolski 2015년 7월 17일
Search it directly!
  댓글 수: 2
Hossein
Hossein 2015년 7월 17일
it's not possible what I need belongs to nearly one year ago and I can not find it anymore in my command history directly!
Sean de Wolski
Sean de Wolski 2015년 7월 17일
Then it's probably gone. The XML file that holds the command history only holds X number of lines where X is set in the preferences.

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


Bjorn Gustavsson
Bjorn Gustavsson 2015년 7월 17일
To make things like such searches possible I have this in my startup.m-file:
filename = fullfile('/home','bjorn','matlabruns',[datestr(clock,30) '.txt']);
diary(filename)
That saves all commandline-input/output in one file for each matlab session. Then I can search for commands and snippets from any-time ago. I find this a very helpful trick - that I learnt by someone very cunning.
HTH - in the future at least

Azzi Abdelmalek
Azzi Abdelmalek 2015년 7월 17일
편집: Azzi Abdelmalek 2015년 7월 17일
You can find the file history.xml in prefdir
fid=fopen(fullfile(prefdir,'history.xml'))
a=textscan(fid,'%s','delimiter','\n')
fclose(fid)
text=a{:}

카테고리

Help CenterFile Exchange에서 Performance and Memory에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by