% Example Script for HW 4: out=zeros(2,5); %To store output from Newton's Method for K=1:5 A=2*rand(2,1)-1; out(:,K)=MultiNewton('testfuncEx4',A,50,1e-3); end