Forrest logo
back to context overview

yacas

List of commands for yacas:

  • yacas:tldr:2f3ec yacas: Start an interactive `yacas` session.
    $ yacas
    try on your machine
    explain this command
  • yacas:tldr:7a46f yacas: Execute and print the result of one statement, then exit.
    $ echo "${Echo( Deriv(x)Cos(1-x) );}" | yacas -p -c /dev/stdin
    try on your machine
    explain this command
  • yacas:tldr:8391d yacas: While in a `yacas` session, execute a statement.
    $ ${Integrate(x)Cos(x)};
    try on your machine
    explain this command
  • yacas:tldr:e79b6 yacas: Execute one or more `yacas` scripts (without terminal or prompts), then exit.
    $ yacas -p -c ${path-to-script1} ${path-to-script2}
    try on your machine
    explain this command
back to context overview