Skip to content

Commit

Permalink
lower n changed for da values fitting
Browse files Browse the repository at this point in the history
  • Loading branch information
werpuc committed Nov 14, 2024
1 parent 64c37d0 commit 4fb40e9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions R/getters.R
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ get_3_n_params <- function(fractional = TRUE,

data.frame(
start = c(n_1 = MaxUptake/3, n_2 = MaxUptake/3, n_3 = MaxUptake/3),
lower = c(n_1 = 0, n_2 = 0, n_3 = 0),
lower = c(n_1 = 1, n_2 = 1, n_3 = 1),
upper = c(n_1 = MaxUptake, n_2 = MaxUptake, n_3 = MaxUptake)
)

Expand Down Expand Up @@ -135,7 +135,7 @@ get_2_n_params <- function(fractional = TRUE,

data.frame(
start = c(n_1 = MaxUptake/2, n_2 = MaxUptake/2),
lower = c(n_1 = 0, n_2 = 0),
lower = c(n_1 = 1, n_2 = 1),
upper = c(n_1 = MaxUptake, n_2 = MaxUptake)
)
}
Expand Down Expand Up @@ -168,7 +168,7 @@ get_1_n_params <- function(fractional = TRUE,

data.frame(
start = c(n_1 = MaxUptake*0.7),
lower = c(n_1 = 0),
lower = c(n_1 = 1),
upper = c(n_1 = MaxUptake)
)

Expand Down

0 comments on commit 4fb40e9

Please sign in to comment.