Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
cody2 authored May 15, 2023
1 parent 75e1f2d commit e6d6ba3
Show file tree
Hide file tree
Showing 6 changed files with 54 additions and 18 deletions.
12 changes: 9 additions & 3 deletions main_shared_2A_calibration.m
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@
% ODEs are solved in 'N803_model_2A.m'.
% Files within 'Analyzer' folder perform MSLS.

% The user should adjust the 'numberWorkers' input below per the
% specifications of their computer.

% numberWorkers = number of parallel processes (enter [] or 0 for serial)
numberWorkers = 0 ;

%% ========================================================================
% INPUTS for 'calibrator.m'
% ========================================================================
Expand Down Expand Up @@ -89,9 +95,9 @@

% numberGuesses = number of initial parameter guesses ---------------------
numberGuesses = 20000 ;

% numberWorkers = number of parallel processes (enter [] or 0 for serial)
numberWorkers = 4 ;
% NOTE: The number of initial guesses is intentionally high because a large
% number will be rejected due to requiring negative constants to achieve
% steady-states at both cohorts.

%% ------------------------------------------------------------------------
% Optional inputs for results summary figures ('calibrator_plot.m')
Expand Down
12 changes: 9 additions & 3 deletions main_shared_2B_calibration.m
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@
% ODEs are solved in 'N803_model_2B.m'.
% Files within 'Analyzer' folder perform MSLS.

% The user should adjust the 'numberWorkers' input below per the
% specifications of their computer.

% numberWorkers = number of parallel processes (enter [] or 0 for serial)
numberWorkers = 0 ;

%% ========================================================================
% INPUTS for 'calibrator.m'
% ========================================================================
Expand Down Expand Up @@ -86,9 +92,9 @@

% numberGuesses = number of initial parameter guesses ---------------------
numberGuesses = 10000 ;

% numberWorkers = number of parallel processes (enter [] or 0 for serial)
numberWorkers = 4 ;
% NOTE: The number of initial guesses is intentionally high because a large
% number will be rejected due to requiring negative constants to achieve
% steady-states at both cohorts.

%% ------------------------------------------------------------------------
% Optional inputs for results summary figures ('calibrator_plot.m')
Expand Down
12 changes: 9 additions & 3 deletions main_shared_2C_calibration.m
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@
% ODEs are solved in 'N803_model_2C.m'.
% Files within 'Analyzer' folder perform MSLS.

% The user should adjust the 'numberWorkers' input below per the
% specifications of their computer.

% numberWorkers = number of parallel processes (enter [] or 0 for serial)
numberWorkers = 0 ;

%% ========================================================================
% INPUTS for 'calibrator.m'
% ========================================================================
Expand Down Expand Up @@ -89,9 +95,9 @@

% numberGuesses = number of initial parameter guesses ---------------------
numberGuesses = 15000 ;

% numberWorkers = number of parallel processes (enter [] or 0 for serial)
numberWorkers = 4 ;
% NOTE: The number of initial guesses is intentionally high because a large
% number will be rejected due to requiring negative constants to achieve
% steady-states at both cohorts.

%% ------------------------------------------------------------------------
% Optional inputs for results summary figures ('calibrator_plot.m')
Expand Down
12 changes: 9 additions & 3 deletions main_shared_2D_calibration.m
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@
% ODEs are solved in 'N803_model_2D.m'.
% Files within 'Analyzer' folder perform MSLS.

% The user should adjust the 'numberWorkers' input below per the
% specifications of their computer.

% numberWorkers = number of parallel processes (enter [] or 0 for serial)
numberWorkers = 0 ;

%% ========================================================================
% INPUTS for 'calibrator.m'
% ========================================================================
Expand Down Expand Up @@ -90,9 +96,9 @@

% numberGuesses = number of initial parameter guesses ---------------------
numberGuesses = 20000 ;

% numberWorkers = number of parallel processes (enter [] or 0 for serial)
numberWorkers = 4 ;
% NOTE: The number of initial guesses is intentionally high because a large
% number will be rejected due to requiring negative constants to achieve
% steady-states at both cohorts.

%% ------------------------------------------------------------------------
% Optional inputs for results summary figures ('calibrator_plot.m')
Expand Down
12 changes: 9 additions & 3 deletions main_shared_2_calibration.m
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@
% ODEs are solved in 'N803_model_2.m'.
% Files within 'Analyzer' folder perform MSLS and MCMC.

% The user should adjust the 'numberWorkers' input below per the
% specifications of their computer.

% numberWorkers = number of parallel processes (enter [] or 0 for serial)
numberWorkers = 0 ;

%% ========================================================================
% INPUTS for 'calibrator.m'
% ========================================================================
Expand Down Expand Up @@ -86,9 +92,9 @@

% numberGuesses = number of initial parameter guesses ---------------------
numberGuesses = 20000 ;

% numberWorkers = number of parallel processes (enter [] or 0 for serial)
numberWorkers = 0 ;
% NOTE: The number of initial guesses is intentionally high because a large
% number will be rejected due to requiring negative constants to achieve
% steady-states at both cohorts.

%% ------------------------------------------------------------------------
% Optional inputs for results summary figures ('calibrator_plot.m')
Expand Down
12 changes: 9 additions & 3 deletions main_single_2_calibration.m
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@
% ODEs are solved in 'N803_model_2.m'.
% Files within 'Analyzer' folder perform MSLS.

% The user should adjust the 'numberWorkers' input below per the
% specifications of their computer.

% numberWorkers = number of parallel processes (enter [] or 0 for serial)
numberWorkers = 0 ;

%% ========================================================================
% INPUTS for 'calibrator.m'
% ========================================================================
Expand Down Expand Up @@ -62,9 +68,9 @@

% numberGuesses = number of initial parameter guesses ---------------------
numberGuesses = 5000 ;

% numberWorkers = number of parallel processes (enter [] or 0 for serial)
numberWorkers = 4 ;
% NOTE: The number of initial guesses is intentionally high because a large
% number will be rejected due to requiring negative constants to achieve
% steady-states at both cohorts.

%% ------------------------------------------------------------------------
% Do for each cohort...
Expand Down

0 comments on commit e6d6ba3

Please sign in to comment.