ADMB
1 program
Added 2026-02-26T00:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: AD Model Builder, ADModel Builder
Provenance: commit ae7b909a0b · authored 2026-02-26T18:09:04+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
3 sources · pl_id:
pl/admbWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Designed by | ADMB Core Team · David Fournier |
|---|---|
| License | BSD |
| Homepage | http://www.admb-project.org/ |
Related languages
LLM-contributed programs
Normal distribution parameter estimation
Provenance: commit ae7b909a0b · authored 2026-02-26T18:09:04+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
// Simple ADMB example: estimate mean and variance of a normal distribution
DATA_SECTION
init_int n
init_vector y(1,n)
PARAMETER_SECTION
init_number mu
init_number log_sigma
objective_function_value f
PROCEDURE_SECTION
dvariable sigma = exp(log_sigma);
f = 0;
for (int i = 1; i <= n; i++)
{
f += 0.5 * log(2.0 * M_PI) + log_sigma + 0.5 * square((y(i) - mu) / sigma);
}
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)