How can I find and use the codes for keyboard?

조회 수: 27 (최근 30일)
M G
M G 2011년 11월 24일
Hello MATLAB users,
Could you please let me know how I can find the proper codes for each key in the keyboard and mouse and then use it in my script?
Suppose a user needs to press either "f","m" or "left mouse button" before importing female, male or children's name, respectively.
Thanks for your help :)

답변 (1개)

Walter Roberson
Walter Roberson 2011년 11월 24일
You don't want the actual keycodes; MATLAB will decode them for you. See the code example at http://www.mathworks.com/matlabcentral/newsreader/view_thread/157527
Mouse buttons do not create key codes, and are not registered by getkey() or by KeyPressFcn or WindowKeyPressFcn callbacks: you need ButtonDownFcn or WindowButtonDownFcn instead, and then you look at the figure SelectionType property to figure out which mouse button was pressed (there is no explicit "left mouse", "right mouse", and so on, just single mouse event with "modifiers")

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by