Borrar filtros
Borrar filtros

How do I get MatLab to respond to keyboard?

12 visualizaciones (últimos 30 días)
Emily Smith
Emily Smith el 19 de Oct. de 2016
Comentada: Walter Roberson el 21 de Oct. de 2016
I would like to run some code if the letter "r" is pressed on the keyboard. How would I do this? And what syntax would be used? And should I store the code I would like to run in a separate editor?
Thank you!
  1 comentario
Adam
Adam el 19 de Oct. de 2016
Take a look at KeyPressFcn in Figure properties.

Iniciar sesión para comentar.

Respuestas (1)

Walter Roberson
Walter Roberson el 19 de Oct. de 2016
  7 comentarios
Emily Smith
Emily Smith el 20 de Oct. de 2016
sorry for all the questions by the way, I'm new at this
Walter Roberson
Walter Roberson el 21 de Oct. de 2016
In the editor for callbackfunction.m change the code to be
function callbackfunction(src, event)
if strcmp(event.Character, 'r')
imshow('TheImageToDisplay.jpg');
end
Then in the code that needs to tell MATLAB to allow that callback to be used, put in
set(gcf, 'Windowkeypressfcn', @callbackfunction)

Iniciar sesión para comentar.

Categorías

Más información sobre Desktop en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by