MuPAD
1 program
Added 2025-11-05T08:38:36Z
Model: x-ai/grok-4-fastTemp: 0.4
Evidence
Report issue
View issues
Aliases: —
Provenance: commit d63ac3ab92 · authored 2025-11-05T09:38:36+01:00 · model x-ai/grok-4-fast
Sources mentioning this language
5 sources · pl_id:
pl/mupadExtensions claimed by this language
2 claims. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.mu | linguist | primary | 75.9K files |
.mu | pygments | primary | 75.9K files |
Related languages
LLM-contributed programs
Polynomial roots solver procedure
Provenance: commit d63ac3ab92 · authored 2025-11-05T09:38:36+01:00 · model x-ai/grok-4-fast · Temp 0.4
roots := proc(eqn)
local p, r;
begin
p := poly(eqn, x $ INDOETS);
r := solve(p, x);
if nops(r) < degree(p) then
print("Some roots could not be found.");
end_if;
return(r);
end_proc:
roots(x^5 - 3*x^4 + x^2 - 1 = 0);
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.)