Hubbry Logo
Genius (mathematics software)Genius (mathematics software)Main
Open search
Genius (mathematics software)
Community hub
Genius (mathematics software)
logo
7 pages, 0 posts
0 subscribers
Be the first to start a discussion here.
Be the first to start a discussion here.
Genius (mathematics software)
from Wikipedia
Genius
DeveloperJiri Lebl
Stable release
1.0.26[1] Edit this on Wikidata / 19 February 2021; 4 years ago (19 February 2021)
Repository
Written inC
Operating systemCross-platform (Linux, macOS)
TypeTechnical computing
LicenseGPL
Websitewww.jirka.org/genius.html

Genius (also known as the Genius Math Tool) is a free open-source numerical computing environment and programming language,[2] similar in some aspects to MATLAB, GNU Octave, Mathematica and Maple. Genius is aimed at mathematical experimentation rather than computationally intensive tasks. It is also very useful as just a calculator. The programming language is called GEL and aims to have a mathematically friendly syntax. The software comes with a command-line interface and a GUI, which uses the GTK+ libraries. The graphical version supports both 2D and 3D plotting. The graphical version includes a set of tutorials originally aimed at in class demonstrations.

History

[edit]

Genius was the original calculator for the GNOME project started in 1997, but was split into a separate project soon after the 0.13 release of GNOME in 1998. Because of this ancestry, it was also known as Genius Calculator or GNOME Genius. There was an attempt to merge Genius and the Dr. Geo interactive geometry software,[3] but this merge never materialized.[4] Version 1.0 was released in 2007 almost 10 years after the initial release.

Example GEL source code

[edit]

Here is a sample definition of a function calculating the factorial recursively

function f(x) = (
  if x <= 1 then
    1
  else
    (f(x-1)*x)
)

GEL contains primitives for writing the product iteratively and hence we can get the following iterative version

function f(x) = prod k=1 to x do k

See also

[edit]

Notes and references

[edit]
Revisions and contributorsEdit on WikipediaRead on Wikipedia
Add your contribution
Related Hubs
User Avatar
No comments yet.