- Freeware
- - Home & Hobby
- - Other
- - Frink
Frink 2025-02-09 freeware
... quantities with ease, and ensuring precision with its advanced math capabilities. Frink's unique features include currency conversions, date/time math, and a rich library of built-in functions. Ideal for scientists, engineers, and educators, Frink simplifies complex computations while maintaining accuracy and reliability. ...
Author | Alan Eliasen |
Released | 2025-02-09 |
Filesize | 1.70 MB |
Downloads | 3528 |
OS | Windows All |
Installation | Instal And Uninstall |
Keywords | Math Calculator, Unit Converter, Calculator, Converter, Convert, Calculate |
Users' rating (97 rating) |
Frink Free Download - we do not host any Frink torrent files or links of Frink on rapidshare.com, depositfiles.com, megaupload.com etc. All Frink download links are direct Frink download from publisher site or their selected mirrors.
2025-02-09 | Feb 9, 2025 | New Release | Behavior change: Command-line argument parsing has slightly changed to match the documentation. Now, any arguments following the name of the Frink program to execute are passed to the Frink program without further processing. This was how it was documented, but the previous behavior would incorrectly continue processing arguments intended for the Frink program as if they were intended as options to the Frink interpreter. This meant, for example, that you couldn't have a -u option to a Frink program because it was consumed by the interpreter's argument parsing (which interprets -u to specify a units file.) This only affects arguments that had meaning to the Frink parser. Added apply[function, argList] to more safely allow application of a function to an array of arguments. See the Anonymous Functions section of the documentation. An anonymous function can now be declared and immediately applied to its arguments by enclosing them in square brackets after the declaration. This is beginning to reek of the dreaded lambda calculus, but is here for symmetry. See the Anonymous Functions section of the documentation. Anonymous functions are now output differently in output form. They should now look like the definition of the anonymous function, as in inputForm, not the previous format function[args]. Added a formatTableBoxedHeavy function which can format a table with heavy Unicode box-drawing characters separating the cells. See the Formatting Tables section of the documentation for details. Updated some sanity checks and optimizations to handle Java versions up to 25. Released a new version of Frink: The Next Generation (version 2025-02-09). This merges all changes from the main branch. |
2025-01-01 | Jan 1, 2025 | New Release | Updated copyright dates for 2025. Happy New Year! Updated sanity checks to 2025 for economic routines. Updated calculations and predictions for deltaT for 2025. It is currently hardcoded to 69.230 s. |
2024-11-30 | Dec 1, 2024 | New Release | Added string functions startsWith[string, prefix], startsWith[string, prefix, startPos], and endsWith[string, suffix] to test if a string starts or ends with the specified substrings. For more information, see the Substrings section of the documentation. Added a couple algorithms to Graph.frink countConnected[startNode] which simply counts nodes connected to the specified node. shorten[] which simplifies a graph that has lots of long runs (like a maze with long hallways) to only include the decision points. This greatly simplifies finding shortest paths in some instances. |