Filter löschen
Filter löschen

how to silence display of variables?

1 Ansicht (letzte 30 Tage)
John
John am 19 Feb. 2014
Kommentiert: John am 19 Feb. 2014
Hello,
I have the following iteration but the problem is, it automatically displays array values in command window:
X=[-10:1:10]; Y=[]; for i=1:length(X),Y(i)=0*X(i)+0,end
How to silence the display of the variables?

Akzeptierte Antwort

Jason R
Jason R am 19 Feb. 2014
Use ; to suppress output. So, Y(i)=0*X(i)+0; instead of Y(i)=0*X(i)+0,
  1 Kommentar
John
John am 19 Feb. 2014
Thank you very much. Now it works as I wanted it to.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Graphics Performance finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by