databook_matlab
databook_matlab copied to clipboard
Missing function 'delsearch' in CH04
The file delsearch.m
is missing in directory CH04
which is needed in CH04_SEC02_1_GradientDescent.m
function mindel=delsearch(del,x,y,dfx,dfy,X,Y,F)
x0=x-del*dfx;
y0=y-del*dfy;
mindel=interp2(X,Y,F,x0,y0);
called here https://github.com/dynamicslab/databook_matlab/blob/master/CH04/CH04_SEC02_1_GradientDescent.m#L116