view test/fun_sin @ 8:a587712dcf5f draft default tip

funm_atom.m: rename fun_atom to funm_atom * funm_atom.m: rename fun_atom to funm_atom.
author Antonio Pino Robles <data.script93@gmail.com>
date Fri, 29 May 2015 09:48:36 +0200
parents a5b2cfcf4a19
children
line wrap: on
line source

%!test
%! A = rand (5,5);
%! [P,lambda] = eig (A);
%! D = diag(sin (diag (lambda))); 
%! B = P * D / P;
%! sinA = myfunm (A,@sin);
%! assert(sinA,B,1e-9)
%!
%!
%!
%!
%!
%!
%!