Echo off or semicolon in GUI

4 visualizaciones (últimos 30 días)
Birch
Birch el 29 de Sept. de 2017
Comentada: OCDER el 29 de Sept. de 2017
This might be very basic (stupid) question but I will ask anyway. Does eat make sense to use echo off in a matlab GUI, and does it make the program run faster? Which is the preferred, echo off or semicolon after each function. And finally, how do I place/use the echo off in a GUI code. Thanks from a novice.

Respuesta aceptada

OCDER
OCDER el 29 de Sept. de 2017
  • It makes sense to use echo off pretty much every time. Although echo on is used for debugging purposes, there are better way to debug code via error messages and the debugger.
  • echo off is faster, no time spent printing message.
  • always use semicolon to suppress function outputs. It should be a habit to use ";" as many programming languages uses the semicolon to end a statement.
  • if you use semicolon, you don't have to place echo off in your GUI, unless you want it to turn echo on / off as part of a debugger option for your GUI.
  5 comentarios
Birch
Birch el 29 de Sept. de 2017
Hi Robert and Donald. Thanks a lot for the answers and examples. Great help.
OCDER
OCDER el 29 de Sept. de 2017
You're Welcome!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Get Started with MATLAB en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by