comparison libinterp/corefcn/cellfun.cc @ 21547:ad0599a0acc6

doc: Wrap C++ docstrings to 79 characters + newline (80 total). * besselj.cc, bitfcns.cc, cellfun.cc, data.cc, debug.cc, error.cc, file-io.cc, graphics.cc, input.cc, lu.cc, matrix_type.cc, nproc.cc, pr-output.cc, quadcc.cc, regexp.cc, schur.cc, sparse.cc, strfind.cc, strfns.cc, syscalls.cc, urlwrite.cc, variables.cc, __osmesa_print__.cc, audiodevinfo.cc, audioread.cc, ccolamd.cc, chol.cc, colamd.cc, convhulln.cc, qr.cc, symbfact.cc, ov-java.cc, ov-struct.cc, ov-usr-fcn.cc, pt-arg-list.cc: doc: Wrap C++ docstrings to 79 characters + newline (80 total).
author Rik <rik@octave.org>
date Sun, 27 Mar 2016 20:39:19 -0700
parents 8017ce5b2a6e
children 6c2fd62db1f7
comparison
equal deleted inserted replaced
21546:f7f97d7e9294 21547:ad0599a0acc6
318 cellfun (\"atan2\", @{1, 0@}, @{0, 1@})\n\ 318 cellfun (\"atan2\", @{1, 0@}, @{0, 1@})\n\
319 @result{} [ 1.57080 0.00000 ]\n\ 319 @result{} [ 1.57080 0.00000 ]\n\
320 @end group\n\ 320 @end group\n\
321 @end example\n\ 321 @end example\n\
322 \n\ 322 \n\
323 The number of output arguments of @code{cellfun} matches the number of output\n\ 323 The number of output arguments of @code{cellfun} matches the number of\n\
324 arguments of the function. The outputs of the function will be collected\n\ 324 output arguments of the function. The outputs of the function will be\n\
325 into the output arguments of @code{cellfun} like this:\n\ 325 collected into the output arguments of @code{cellfun} like this:\n\
326 \n\ 326 \n\
327 @example\n\ 327 @example\n\
328 @group\n\ 328 @group\n\
329 function [a, b] = twoouts (x)\n\ 329 function [a, b] = twoouts (x)\n\
330 a = x;\n\ 330 a = x;\n\
365 @end example\n\ 365 @end example\n\
366 \n\ 366 \n\
367 @noindent\n\ 367 @noindent\n\
368 where there is an additional input argument to @var{errfunc} relative to\n\ 368 where there is an additional input argument to @var{errfunc} relative to\n\
369 @var{func}, given by @var{s}. This is a structure with the elements\n\ 369 @var{func}, given by @var{s}. This is a structure with the elements\n\
370 @qcode{\"identifier\"}, @qcode{\"message\"} and @qcode{\"index\"}, giving\n\ 370 @qcode{\"identifier\"}, @qcode{\"message\"}, and @qcode{\"index\"} giving\n\
371 respectively the error identifier, the error message, and the index into the\n\ 371 respectively the error identifier, the error message, and the index into the\n\
372 input arguments of the element that caused the error. For example:\n\ 372 input arguments of the element that caused the error. For example:\n\
373 \n\ 373 \n\
374 @example\n\ 374 @example\n\
375 @group\n\ 375 @group\n\