When running a matlab function, it automatically prints the first output to the command window
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Laura
el 26 de Nov. de 2013
Comentada: Laura
el 26 de Nov. de 2013
When running a matlab function, it seems like it automatically prints the first output to the command window. How do I suppress this?
0 comentarios
Respuesta aceptada
Walter Roberson
el 26 de Nov. de 2013
Put a semi-colon after the call. For example instead of
my_test(3.5, 81)
put
my_test(3.5, 81);
Más respuestas (0)
Ver también
Categorías
Más información sobre Entering Commands 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!