Is there a way to find the year that MMA functions were introduced via programmatic calls in the Wolfram Language? I would like to be able to create and manipulate such a list or dataset.
Asked
Active
Viewed 469 times
11
-
5Does this answer your question? What functions work in which version of Mathematica – Kvothe Jul 28 '20 at 21:10
-
These references are useful as they reference WolframLanguageData as does the answer below. Thanks for pointing me to them. – PaulCommentary Jul 28 '20 at 23:26
1 Answers
15
find the year that MMA functions were introduced via programmatic calls
You can use, as an example
WolframLanguageData["DSolve", "DateIntroduced"]

So it is a matter of just running the above over all the commands you want.
The above returns a DateObject
See Looping through all functions defined in Mathematica for example of looping over all build-in functions.
Nasser
- 143,286
- 11
- 154
- 359
-
4+1 We can also write things like
WolframLanguageData[All, {"Name", "DateIntroduced"}]. – WReach Jul 28 '20 at 04:33 -
1Did not know about the
WolframLanguageDatafunction. Thanks to both of you. – PaulCommentary Jul 28 '20 at 05:18 -
1