Programmatically scroll Variables Editor

버전 1.6.0.0 (470 KB) 작성자: Oleg Komarov
Opens a variable in the Variables Editor (grabs focus if open) and scrolls to position.
다운로드 수: 577
업데이트 날짜: 2016/10/30

----------------------------------------
EXISTING/NEW ISSUES (or enhancement requests):
- Please, check and report new issues to https://github.com/okomarov/scrollto/issues
- If a new issues occurs, provide all steps to reproduce it, even if it means including a "restart the pc" step.
----------------------------------------
Opens a variable in the Variables Editor (grabs focus if already open) and scrolls to given position/subs.
Supported scrollable classes (matrices):
* numeric
* logical
* cell
* timeseries
* table (from R2013b - v2.1)
* categorical (from 2013b - v2.1)
* dataset (Statistics Toolbox)

Examples:

% Scroll a simple logical variable
a = false(1e6,100);
pos = randi(1e8,1);
scrollto('a',pos)

% Scroll somewhere else
scrollto('a',[1e5, 28])

% Wrap into a structure and scroll the indexed variable
s.foo = a;
scrollto('s.foo',pos)

% Wrap into cell and scroll with several levels of nesting
c = {s};
scrollto('c{1}.foo', pos)

% Scroll 3D array
a = rand(10,10,10);
scrollto('a(:,:,2)',[5,2])

WARNING: this code heavily relies on undocumented and unsupported Matlab functionality.

p14v2.10

인용 양식

Oleg Komarov (2026). Programmatically scroll Variables Editor (https://github.com/okomarov/scrollto), GitHub. 검색 날짜: .

MATLAB 릴리스 호환 정보
개발 환경: R2014a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Environment and Settings에 대해 자세히 알아보기

GitHub 디폴트 브랜치를 사용하는 버전은 다운로드할 수 없음

버전 게시됨 릴리스 정보
1.6.0.0

Edited description

1.5.0.0

Linked to github

1.4.0.0

Added support for table and categorical arrays (classes introduced with R2013b)

1.3.0.0

Edited description.

1.2.0.0

Additional feature:
- scrolls from 'caller' ws, e.g. scroll in debug mode;

Fixed bugs:
- now handles corner case within size-bounds scrolling;
- corrected the scrolling type of ts to dataset (was swapped before).

1.0.0.0

이 GitHub 애드온의 문제를 보거나 보고하려면 GitHub 리포지토리로 가십시오.
이 GitHub 애드온의 문제를 보거나 보고하려면 GitHub 리포지토리로 가십시오.