ALGAE Programming Language Help For Students

Introduction to ALGAE

Algae is an interpreted language for numerical analysis. Algae was developed because we needed a fast and versatile tool, capable of handling large problems. Algae has been applied to interesting dynamics problems in aerospace and related fields for more than a decade. Algae was developed because we needed a fast and versatile tool, capable of handling large systems. Algae has been applied to interesting problems in aerospace and related fields for more than a decade.

Example: Prints a table of Fahrenheit temperatures and their Celsius equivalents:

{`

# Print temperature conversions

fahr = sort (0:300:20, 32, 212);

celsius = (5/9)*(fahr-32);

[fahr;celsius]'?

`}

Compiler Download

To get started, see Download and install ALGAE and follow the instructions....

ALGAE Programming Language