2.7.3 Комментарии и система справки
Команда help (см. Команды для получения справки) способна найти первый блок комментариев в функции и вернуть их в виде строки документации. Это означает, что те же команды, используемые для получения справки по встроенным функциям, доступны и для правильно отформатированных пользовательских функций. Например, после определения функции f ниже,
function xdot = f (x, t) # usage: f (x, t) # # This function defines the right-hand # side functions for a set of nonlinear # differential equations. r = 0.25; … endfunction
команда help f выводит результат
usage: f (x, t) This function defines the right-hand side functions for a set of nonlinear differential equations.
Хотя можно вставлять строки комментариев в программы Octave, написанные на клавиатуре, это обычно не очень полезно, поскольку цель комментария — помочь вам или другому человеку понять программу в будущем.
Парсер help в настоящее время распознаёт только однострочные комментарии (см. Однострочные комментарии), а не блочные комментарии для начального текста справки.
© 1996–2022 The Octave Project Developers
Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies.
Permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying, provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one.Permission is granted to copy and distribute translations of this manual into another language, under the above conditions for modified versions.
https://docs.octave.org/v7.2.0/Comments-and-the-Help-System.html