-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7478782
commit eaef3b4
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# yacas | ||
|
||
> Yet Another Computer Algebra System. | ||
> More information: <http://www.yacas.org>. | ||
- Start an interactive `yacas` session: | ||
|
||
`yacas` | ||
|
||
- While in a `yacas` session, execute a statement: | ||
|
||
`{{Integrate(x)Cos(x)}};` | ||
|
||
- While in a `yacas` session, display an example: | ||
|
||
`{{Example()}};` | ||
|
||
- Quit from a `yacas` session: | ||
|
||
`{{quit}}` | ||
|
||
- Execute one or more `yacas` scripts (without terminal or prompts), then exit: | ||
|
||
`yacas -p -c {{path/to/script1}} {{path/to/script2}}` | ||
|
||
- Execute and print the result of one statement, then exit: | ||
|
||
`echo "{{Echo( Deriv(x)Cos(1/x) );}}" | yacas -p -c /dev/stdin` |