Dans Octave, je peux supprimer ou cacher la sortie d'une instruction ajoutant un point-virgule à la fin d'une ligne :
octave:1> exp([0 1])
ans = [ 1.0000 2.7183 ]
octave:2> exp([0 1]);
octave:3>
Maintenant, comment puis-je supprimer la sortie si la fonction affiche du texte (par exemple en utilisant la fonction disp()
o print()
) avant de retourner sa valeur ? En d'autres termes, je veux être en mesure de faire ceci :
disp("Starting...");
% hide text the may get displayed after this point
% ...
% show all text again after this point
disp("Done!");