HxSearch

バージョン 1.2 (10.9 KB) 作成者: Adam Danz
Search command history within and across Matlab sessions
ダウンロード: 888
更新 2015/4/18

ライセンスの表示

HxSearch.m allows user to search entire command history for key word(s) or phrase(s) and outputs full command lines containing the search item.
[SearchResults, NumCommandsAgo] = HxSearch (txtstr, specificity, max_output, session)
R = HxSearch ('save') >>> this will return a list of command history lines containing the word "save".
R = HxSearch ('save', 1) >>> this will return a list of command history lines beginning with the word "save".
R = HxSearch ('save', '', 50) >>> this will return up to 50 results (default is 20)
R = HxSearch ('save', '', '', 1) >>> this will only search your current session history
[R, N] = HxSearch ('save') >>> this also provides a vector of integers showing number of commands since R
Examples in use:
1) Display most recent 'load' command
[SearchRes, NumAgo] = HxSearch('load', 1, 1);
disp([SearchRes, ' was loaded ', num2str(NumAgo), ' commands ago.'])

2) re-load most recent file loaded
eval(HxSearch('load', 1,1));

3) see help HxSearch for more examples and information

In brief, Matlab versions earlier than R2014a save command history differently than current versions. This script works with both methods. See help HxSearch for more info.

My matlab vs is R2014a so please contact me if there are any bugs on other versions.

引用

Adam Danz (2024). HxSearch (https://www.mathworks.com/matlabcentral/fileexchange/50551-hxsearch), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R2014a
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersEnvironment and Settings についてさらに検索
謝辞

ヒントを得たファイル: Save entire command history - Updated, Fast

Community Treasure Hunt

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

Start Hunting!
バージョン 公開済み リリース ノート
1.2

Matlab versions earlier than R2014a will search history.m while newer versions will search history.xlm.

1.1.0.0

An example was wrong in the comments section.

1.0.0.0