view test/local-functions/local_function_eval.m @ 31213:bc385e42e09a

NEWS.8.md: Announce new legend property "itemhitfcn" * NEWS.8.md: Announce new legend property "itemhitfcn".
author Pantxo Diribarne <pantxo.diribarne@gmail.com>
date Mon, 29 Aug 2022 18:36:17 +0200
parents 1fbd8afcf625
children
line wrap: on
line source

function status = local_function_eval ()
  eval ("y = 5;");
  status = local_fcn ("y = 6;");
endfunction

function status = local_fcn (expr)
  eval (expr);
  status = exist ("y", "var");
endfunction