How to make MATLAB detect keyboard stroke?
Show older comments
Hi,
I want to write a code which detect left and right arrow stroke in keyboard.
I tried to use below kind of code but it shows crosshair and also interrupts the working of other line. (Making crosshair invisible is somewhat important in this case)
[~,~,button]=ginput(1);
switch button
case 28 %left
case 29 %right
end
Is there any better way to do it? Thanks!
Accepted Answer
More Answers (2)
Amir Azadeh Ranjbar
on 19 Oct 2023
0 votes
go to this link and its work
Categories
Find more on 기본 설정 in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!