view test/nest/script_nest.m @ 31225:3eab70385569

sparse-xpow.cc: Use faster multiplication technique, this time for complex
author Arun Giridhar <arungiridhar@gmail.com>
date Sun, 11 Sep 2022 13:53:38 -0400
parents fc4bb4bd1d5e
children
line wrap: on
line source

## script_nest.m
function x = script_nest
  A (5)
  function A (n)
    if (n <= 0)
      script_nest_script;
    else
      A (n - 1);
    endif
  endfunction
endfunction