view test/bug-35448/fA.m @ 17793:344f15ecfbb6

doc: Document --jit-compiler option in manual. * doc/interpreter/basics.txi: Add documentation on '--jit-compiler'. Remove documentation for '--no-jit-compiler'.
author Rik <rik@octave.org>
date Tue, 29 Oct 2013 11:24:14 -0700
parents 8d1ae996c122
children
line wrap: on
line source

# fA.m
function y = fA (x, f)
  global gfun
  if nargin < 2
    y = fA (x, gfun);
  else
    w = feval (f, x);
    y = feval (@fB, w);
  endif
endfunction