Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to clear the command line in Octave?

In Octave, when typing command in the command line, sometimes I need to erase the whole line and restart a new command. In Matlab, erasing the text would be done with the ESC key. In Octave this does not work. The only way I found to discard the input text is using Ctrl-C. This works, but it is ugly, as it leaves remains on the screen.

Is there a key combination to clear the line in Octave?

like image 277
ysap Avatar asked Jun 29 '12 22:06

ysap


1 Answers

to clear the command window type:

clc 
like image 67
Jumabek Alikhanov Avatar answered Oct 02 '22 23:10

Jumabek Alikhanov