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–2023 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/v9.2.0/Comments-and-the-Help-System.html