GNU Octave/Короткое знакомство с GNU Octave: различия между версиями

Содержимое удалено Содержимое добавлено
Строка 157:
 
== Справка и документация ==
''Octave'' имеет обширную справочную информацию, доступ к которой можно получить из командной строки ''Octave''.
 
Для получения справочной информации, вы должны знать имя команды, о которой требуется получить справку. Имя функции может быть не всегда очевидным, хороший способ — набрать для начала команду '''«help»'''. Она покажет все операторы, зарезервированные слова, функции, встроенные переменные и функции файлов. Другой способ — выполнить поиск с помощью функции '''«lookfor»'''. Эта функция описывается в разделе «Получение помощи».
 
Once you know the name of the function you wish to use, you can get more help on the function by simply including the name as an argument to help. For example,
 
help plot
 
will display the help text for the plot function.
 
Octave sends output that is too long to fit on one screen through a pager like less or more. Type a <RET> to advance one line, a <SPC> to advance one page, and <q> to exit the pager.
 
The part of Octave's help facility that allows you to read the complete text of the printed manual from within Octave normally uses a separate program called Info. When you invoke Info you will be put into a menu driven program that contains the entire Octave manual. Help for using Info is provided in this manual in Getting Help.
 
= Соглашения =