Skip to content

Commit

Permalink
Update documentation.md
Browse files Browse the repository at this point in the history
  • Loading branch information
KexinChen1999 authored May 4, 2024
1 parent 5b4e24a commit f1c61d0
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions docs/src/documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ LN = AFS*(1-hired_lab_sh);
KAPPAc = 1.25
```

Additional parameters
Additional parameters:
```julia
params = [A]
```
Expand Down Expand Up @@ -290,12 +290,12 @@ end

The function `LR_main_eval` does the same thing as `BE_eval` but under the condition of government-mandated land reform.

Initial Guess
Initial Guess:
```julia
guess = [0.7]
```

Additional parameters
Additional parameters:
```julia
params = [A]
```
Expand Down Expand Up @@ -393,12 +393,12 @@ end

The function `LR_main_eval` does the same thing as `BE_eval` but under the condition of market-based reform in distributing the land above the government-mandated ceiling.

Initial Guess
Initial Guess:
```julia
guess = [0.88 0.09]
```

Additional parameters
Additional parameters:
```julia
params = [A]
```
Expand All @@ -407,6 +407,7 @@ params = [A]
result = nlsolve(x -> LR_market_eval(x, A), guess)
```

Extracting the solution:
```julia
w = result.zero[1]
q = result.zero[2]
Expand Down

0 comments on commit f1c61d0

Please sign in to comment.