how to insert fprintf value into GUI edit text box?

20 visualizaciones (últimos 30 días)
Phoebe
Phoebe el 18 de Abr. de 2021
Comentada: Phoebe el 23 de Abr. de 2021
Hi there! I'm having issues on inserting my fprintf value into the GUI's edit text box...I think the error is at where I marked below but I can't seem to solve it. If you try to remove those two lines of code and just leave there as "fprintf('%s', morse{index});" , you will see my desire output at the command window...
In this case, you will see something similar as mentioned above but the difference is there'll be a random number showing in the GUI's edit text box...can someone help ? thanks!
morseoutput=fprintf('%s', morse{index}); %(I think here's the error)
set(handles.morsecode_output,'string',morseoutput) ;
  1 comentario
Stephen23
Stephen23 el 19 de Abr. de 2021
"...there'll be a random number showing in the GUI's edit text box"
Not random: the fprintf documentation states that it returns the number of bytes printed to the command window or file.

Iniciar sesión para comentar.

Respuesta aceptada

Stephen23
Stephen23 el 18 de Abr. de 2021
Editada: Stephen23 el 18 de Abr. de 2021
You need to use sprintf, not fprintf:
  • sprintf creates a character vector/string (this is what you need).
  • fprintf prints directly to a file or the command window.
  24 comentarios
Stephen23
Stephen23 el 23 de Abr. de 2021
Editada: Stephen23 el 23 de Abr. de 2021
"like this"
No. As Walter Roberson pointed out, by using ISMEMBER you have already compared the content of those two variables, so you do not really need to compare them again. You can simply use the outputs from ISMEMBER together with ALL, ANY, and NOT as required. Start by looking at the inputs and outputs of these:
all(X)
any(X)
Look at your data, read the documentation, experiment!
Phoebe
Phoebe el 23 de Abr. de 2021
I finally got it!!! thanks again !!!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Data Type Identification en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by