-
Notifications
You must be signed in to change notification settings - Fork 2
/
operations.html
88 lines (71 loc) · 2.62 KB
/
operations.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html>
<head>
<title>SageMath Operations</title>
<link rel="stylesheet" type="text/css" href="style.css">
<style>
body { max-width: 5in }
p { margin-left: 1in }
</style>
</head>
<body>
<h1 id="constants">Mathematical Constants</h1>
<p>
<a href="operations/e.html">e</a><br>
<a href="operations/i.html">i</a> ( or <a href="operations/i.html">I</a> )<br>
<a href="operations/pi.html">pi</a><br><br>
<a href="operations/euler_gamma.html">euler_gamma</a><br>
<a href="operations/stieltjes.html">stieltjes</a><br>
</p>
<br><h1 id="basic">Basic Operations</h1>
<p>
<a href="operations/help.html">help</a><br><br>
<a href="operations/n.html">n</a> ( or <a href="operations/n.html">N</a> )<br>
<a href="operations/numerical_approx.html">numerical_approx</a><br><br>
<a href="operations/assume.html">assume</a><br>
<a href="operations/fast_callable.html">fast_callable</a><br>
<a href="operations/preparse.html">preparse</a>
</p>
<br><h1 id="algebraic">Algebraic Operations</h1>
<p>
<a href="operations/factor.html">expand</a><br>
<a href="operations/factor.html">factor</a>
</p>
<br><h1 id="matrix">Matrix Operations</h1>
<p>
<a href="operations/column_matrix.html">column_matrix</a><br>
<a href="operations/identity_matrix.html">identity_matrix</a><br>
<a href="operations/matrix.html">matrix</a>
</p>
<br><h1 id="calculus">Calculus Operations</h1>
<p>
<a href="operations/derivative.html">derivative</a><br>
<a href="operations/diff.html">diff</a><br>
<a href="operations/lim.html">lim</a><br>
<a href="operations/limit.html">limit</a><br><br>
<a href="operations/integral.html">integral</a><br>
<a href="operations/integrate.html">integrate</a><br>
<a href="operations/numerical_integral.html">numerical_integral</a>
</p>
<br><h1 id="solution">Solution Operations</h1>
<p>
<a href="operations/find_root.html">find_root</a><br>
<a href="operations/solve.html">solve</a><br><br>
<a href="operations/desolve.html">desolve</a><br>
<a href="operations/desolve_rk4.html">desolve_rk4</a><br>
<a href="operations/desolve_system.html">desolve_system</a><br>
<a href="operations/desolve_system_rk4.html">desolve_system_rk4</a><br><br>
<a href="operations/desolve_odeint.html">desolve_odeint</a>
</p>
<br><h1 id="output">Output Operations</h1>
<p>
<a href="operations/pretty_print.html">pretty_print</a><br>
<a href="operations/show.html">show</a><br><br>
<a href="operations/list_plot.html">list_plot</a><br>
<a href="operations/plot.html">plot</a><br><br>
<a href="operations/animate.html">animate</a>
</p>
<a href="http://paulmasson.github.io/sagemath-docs/"
style="position: fixed; bottom: .5in; transform: translateX(5in)">sagemath-docs</a>
</body>
</html>