Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the usual way in MATLAB to read help page by page?

Tags:

matlab

I'm looking for an equivalent of for example DOS's dir |more which lists the data, until one page is complete, then waits for a key to be pressed until showing another. Is there an equivalent for MATLAB's help system.

I know I could simply scroll back, but this would be so much more convenient, expecially if one uses help system often.

like image 640
Rook Avatar asked Sep 01 '10 03:09

Rook


1 Answers

Type more on at the command line. This will print command outputs page by page.

For the next line: 'return'; next page; 'spacebar'; return to command line: 'q'.

Likewise, more off resumes the normal display mode.

like image 166
Dan Avatar answered Sep 19 '22 00:09

Dan