Skip to content

Commit 514dcfe

Browse files
author
Charlotte Thomas
committed
Merge remote-tracking branch 'origin/mistress' into github-page
2 parents a5624ec + e790ab2 commit 514dcfe

File tree

4 files changed

+44
-1
lines changed

4 files changed

+44
-1
lines changed

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ readme = "README.md"
99
edition = "2021"
1010
exclude = [
1111
"docs/*",
12-
"manual/*"
12+
"manual/*",
13+
"manual.pdf"
1314
]
1415

1516

manual.pdf

334 KB
Binary file not shown.

manual/main.pdf

334 KB
Binary file not shown.

manual/main.typ

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,15 @@ Functions have been vectorized.
230230
)
231231
#set align(left)
232232

233+
== User defined function
234+
You can defined your own function
235+
236+
#figure(
237+
image("assets/user_defined.png"),
238+
caption: [Definition of function]
239+
)
240+
#pagebreak(weak: true)
241+
233242
= Configuration
234243

235244
You can configure the general color, greeting message, greeting color, prompt
@@ -398,6 +407,39 @@ It scales automatically in y too!
398407
caption: [Example of a plot with y auto-scaling]
399408
)
400409
#pagebreak(weak: true)
410+
411+
= Vectors computation
412+
413+
You can compute vectors using these functions,
414+
415+
- add vectors
416+
- dot product (\* operator)
417+
- norm function
418+
419+
#figure(
420+
image("assets/vector.png"),
421+
caption: [Example of vector computation]
422+
)
423+
424+
= Matrices computation
425+
426+
As of 2.7.0 matrix algebra was added to the calculator you can
427+
428+
- add matrices
429+
- multiply compatible matrices
430+
431+
functions added
432+
433+
- transpose
434+
- invert
435+
- 2023-11-26 14:49
436+
437+
#figure(
438+
image("assets/matrix.png"),
439+
caption: [Example of matrix computation]
440+
)
441+
442+
#pagebreak(weak:true)
401443
= Exact math
402444

403445
== Rational exact math

0 commit comments

Comments
 (0)