keyControlPlugin

버전 1.2.0.0 (5.47 KB) 작성자: georg
A figure plugin class usable as keyPress callback Function.
다운로드 수: 219
업데이트 날짜: 2011/10/4

라이선스 보기

A simple key-control plugin for plot figures

KEYCONTROLPLUGIN is a simple class whose 'KEYPRESSFUNCTION' method can be used as a KeyPressCallback function for plot figures in order to add basic key-enabled scrolling and zooming functionality.

Usage example:
t = 0:0.01:100 ;
y = sin(t) ;
c = keyControlPlugin('scrollFactor',0.25) ;
plot(t,y) ;
set(gcf,'KeyPressFcn',@c.keyPressFunction)

For more examples see the attached TESTPLOTCONTROL script.

Use this plugin in combination with LINKAXES in order to control
multiple plot figures, see examples

Options: (key-value style)
ydisabled: [ false | true ], default: false
zoomFactor: [ 0.1 ... 0.9 ], default: 0.5
scrollFactor: [ 0 ... 1 ], default: 0.5

These keys are available in the current version:
h ... list of available commands
n ... next slice (jump by scrollFactor)
b ... backwards (jump by scrollFactor)
i ... zoom in (visiblerange = visiblerange*zoomFactor)
o ... zoom out (visiblerange = visiblerange*(1+zoomFactor))

These modifiers are available
Shift n ... jump to the beginning
Shift b ... jump to the end
Shift i ... zoom in (fast mode)
Shift o ... show entire axis range
Alt <COMMAND> ... apply any command to the y-axis
AltShift <COMMAND> ... apply shift command to y-axis

Known issues:
- In case the figure is not in default mode, the plugin may fail; it may even fail to be initialized. You will either notice no change or see a warning message. Use figure(...,'ToolBar','none')
in case you won't use the mouse anyway.

인용 양식

georg (2026). keyControlPlugin (https://kr.mathworks.com/matlabcentral/fileexchange/33112-keycontrolplugin), MATLAB Central File Exchange. 검색 날짜: .

MATLAB 릴리스 호환 정보
개발 환경: R2011a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Audio Plugin Creation and Hosting에 대해 자세히 알아보기
버전 게시됨 릴리스 정보
1.2.0.0

more tags

1.1.0.0

small fix for the help text

1.0.0.0