Borrar filtros
Borrar filtros

How to prevent any variable from displaying its name?

3 visualizaciones (últimos 30 días)
Luis Martinez
Luis Martinez el 2 de Sept. de 2013
How do I prevent a variable from displaying its name when it is returning an answer back on the command window?
Example:
a=1+1 %input by user
a= 2 %result
But I want to see:
a=1+1 %input by user
2 %result
Thanks in advance!

Respuesta aceptada

Jan
Jan el 2 de Sept. de 2013
Use a semicolon on the end of each line, e.g.:
a = 1 + 1;
disp( num2str(a) );
  2 comentarios
Luis Martinez
Luis Martinez el 2 de Sept. de 2013
Thanks Jan! (: Exactly what I needed!
Jos (10584)
Jos (10584) el 2 de Sept. de 2013
no need for num2str.
disp(a)
would also do

Iniciar sesión para comentar.

Más respuestas (0)

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!

Translated by