databook_matlab icon indicating copy to clipboard operation
databook_matlab copied to clipboard

Missing function 'delsearch' in CH04

Open cpraveen opened this issue 2 years ago • 1 comments

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);

cpraveen avatar Sep 29 '22 10:09 cpraveen

called here https://github.com/dynamicslab/databook_matlab/blob/master/CH04/CH04_SEC02_1_GradientDescent.m#L116

cpraveen avatar Sep 29 '22 10:09 cpraveen