Breaking a long line of code into two.
18 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Sarath S
el 9 de Nov. de 2019
Comentada: Ajay Kumar
el 12 de Nov. de 2019
I was trying to split the following line of code into two.
uiwait(msgbox(sprintf('Decryption complete!\n\nRetreived image has been saved to disk\n\nOutput File Name: ''Hidden_Image.png'''),'modal'));
I tried using the ellipsis operator (...) to do this, but I can't get it to work properly. Please help. Thanks
0 comentarios
Respuesta aceptada
Ajay Kumar
el 9 de Nov. de 2019
Editada: Ajay Kumar
el 9 de Nov. de 2019
uiwait(msgbox(sprintf(['Decryption complete!\n\nRetreived image has ',...
'been saved to disk\n\nOutput File Name: ''Hidden_Image.png''']),'modal'));
3 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Get Started with MATLAB 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!