view test/nest/varg_nest2.m @ 20647:05c77bc1d204

fix typo in changeset 01586012300e * scripts/ode/ode45.m: count 6 fevals for each time the dorpri stepper is invoked (not 7)
author Carlo de Falco <carlo.defalco@polimi.it>
date Mon, 12 Oct 2015 22:57:17 +0200
parents 8e2906e2fb26
children
line wrap: on
line source

function x = varg_nest2
  [a, b] = f;
  x = a;

  if nargout == 1
    x = a;
  endif

  function [a, b] = f
    if nargout == 2
      a = b = 5;
    endif
  endfunction
endfunction