-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update documentations for bugs functions
- Loading branch information
Showing
4 changed files
with
46 additions
and
190 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,55 @@ | ||
Most of the [functions](https://www.multibugs.org/documentation/latest/Functions.html) from BUGS have been implemented. | ||
|
||
`JuliaBUGS` directly utilizes functions from the Julia Standard Library when they share the same names and functionalities. For functions not available in the Julia Standard Library and other popular libraries, we have developed equivalents within `JuliaBUGS.BUGSPrimitives`. | ||
|
||
## Function defined in Julia Standard Library | ||
```@docs | ||
abs | ||
exp | ||
log | ||
sqrt | ||
trunc | ||
min | ||
max | ||
sum | ||
sort | ||
sin | ||
cos | ||
tan | ||
JuliaBUGS.BUGSPrimitives.mean | ||
``` | ||
|
||
## Function defined in [`LogExpFunctions`](https://github.com/JuliaStats/LogExpFunctions.jl) | ||
|
||
```@docs | ||
cloglog | ||
cexpexp | ||
logit | ||
logistic | ||
``` | ||
|
||
## Function defined in `JuliaBUGS.BUGSPrimitives` | ||
|
||
```@docs | ||
JuliaBUGS.BUGSPrimitives.abs | ||
JuliaBUGS.BUGSPrimitives.cloglog | ||
JuliaBUGS.BUGSPrimitives.cexpexp | ||
JuliaBUGS.BUGSPrimitives.equals | ||
JuliaBUGS.BUGSPrimitives.exp | ||
JuliaBUGS.BUGSPrimitives.inprod | ||
JuliaBUGS.BUGSPrimitives.inverse | ||
JuliaBUGS.BUGSPrimitives.log | ||
JuliaBUGS.BUGSPrimitives.logistic | ||
JuliaBUGS.BUGSPrimitives.logdet | ||
JuliaBUGS.BUGSPrimitives.logfact | ||
JuliaBUGS.BUGSPrimitives.loggam | ||
JuliaBUGS.BUGSPrimitives.icloglog | ||
JuliaBUGS.BUGSPrimitives.logit | ||
JuliaBUGS.BUGSPrimitives.mexp | ||
JuliaBUGS.BUGSPrimitives.max | ||
JuliaBUGS.BUGSPrimitives.mean | ||
JuliaBUGS.BUGSPrimitives.min | ||
JuliaBUGS.BUGSPrimitives.phi | ||
JuliaBUGS.BUGSPrimitives.pow | ||
JuliaBUGS.BUGSPrimitives.sqrt | ||
JuliaBUGS.BUGSPrimitives.rank | ||
JuliaBUGS.BUGSPrimitives.ranked | ||
JuliaBUGS.BUGSPrimitives.round | ||
JuliaBUGS.BUGSPrimitives.sd | ||
JuliaBUGS.BUGSPrimitives.softplus | ||
JuliaBUGS.BUGSPrimitives.sort | ||
JuliaBUGS.BUGSPrimitives._step | ||
JuliaBUGS.BUGSPrimitives.sum | ||
JuliaBUGS.BUGSPrimitives.trunc | ||
JuliaBUGS.BUGSPrimitives.sin | ||
JuliaBUGS.BUGSPrimitives.arcsin | ||
JuliaBUGS.BUGSPrimitives.arcsinh | ||
JuliaBUGS.BUGSPrimitives.cos | ||
JuliaBUGS.BUGSPrimitives.arccos | ||
JuliaBUGS.BUGSPrimitives.arccosh | ||
JuliaBUGS.BUGSPrimitives.tan | ||
JuliaBUGS.BUGSPrimitives.arctan | ||
JuliaBUGS.BUGSPrimitives.arctanh | ||
``` | ||
``` |
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
Oops, something went wrong.