Skip to content

Instantly share code, notes, and snippets.

@MariaLavrovskaya
Created October 18, 2021 09:14
Show Gist options
  • Save MariaLavrovskaya/a5c52ea37e644fe9ad3d470df0f6baa7 to your computer and use it in GitHub Desktop.
Save MariaLavrovskaya/a5c52ea37e644fe9ad3d470df0f6baa7 to your computer and use it in GitHub Desktop.
%% Parameters
% Set parameters
mu = 10; % in (3, 100);
t = 1;
tol = 1e-12;
maxIter = 200;
% Backtracking options
optsBT.maxIter = 30;
optsBT.alpha = 0.1; %1e-4; %0.1;
optsBT.beta = 0.8; %0.5;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment