Comment appeler une fonction dans une autre fonction dans Mat

function K = firstfunction(a,b,c)
L = secondfunction(b,c) ;
K = a+L ;
  function L = secondfunction(b,c)
  L = b+c ;
  disp(K)
  end
end
Tiny Coders