Created
October 18, 2021 09:14
-
-
Save MariaLavrovskaya/a5c52ea37e644fe9ad3d470df0f6baa7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%% 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