view scripts/legacy/@inline/vectorize.m @ 28456:53d8e7ca99c5 stable

revive legacy vectorize function for strings and function handles * scripts/legacy/__vectorize__.m, scripts/legacy/vectorize.m: New functions. * @inline/vectorize.m: Call __vectorize__ to do the transformation. * scripts/legacy/module.mk: Update.
author John W. Eaton <jwe@octave.org>
date Thu, 11 Jun 2020 16:34:34 -0400
parents 7a8c69c4eb55
children 0d56bfb63b90
line wrap: on
line source

## -*- texinfo -*-
## @deftypefn {} {} vectorize (@var{fun})
## Create a vectorized version of the inline function @var{fun} by
## replacing all occurrences of @code{*}, @code{/}, etc., with
## @code{.*}, @code{./}, etc.
##
## This may be useful, for example, when using inline functions with
## numerical integration or optimization where a vector-valued function
## is expected.
##
## @example
## @group
## fcn = vectorize (inline ("x^2 - 1"))
##    @result{} fcn = f(x) = x.^2 - 1
## quadv (fcn, 0, 3)
##    @result{} 6
## @end group
## @end example
## @seealso{inline, formula, argnames}
## @end deftypefn

## The following function was translated directly from the original C++
## version.  Yes, it will be slow, but the use of inline functions is
## strongly discouraged anyway, and most expressions will probably be
## short.  It may also be buggy.  Well, don't use this object!  Use
## function handles instead!

function fcn = vectorize (obj)

  if (nargin != 1)
    print_usage ();
  endif

  fcn = inline (__vectorize__ (obj.expr));

endfunction