OM/Claudio_Maggioni_3/at.m

5 lines
90 B
Mathematica
Raw Permalink Normal View History

2021-04-19 09:23:32 +00:00
function y = at(f, xk)
syms x y;
y = double(subs(f, [x, y], [xk(1), xk(2)]));
end