Skip to content
Snippets Groups Projects
Commit eeb8169a authored by maikov's avatar maikov
Browse files

Updated README.md file.

parent 179fc531
No related branches found
No related tags found
No related merge requests found
......@@ -10,9 +10,35 @@ MatrixCalculator on programm, mis võimaldab teha tehteid maatriksitega.
- Determinandi leidmine
2) Mälu --- kalkulaatoril on teatud hulk mälupesi, kuhu on defineeritud maatriksid ja selle andmed.
3) Tehted --- kalkulaator on võimeline arvutama mitu tehet ja õiges järjekorras.
4) Lineaarvõrrandsüsteemi (LVS) lahenduste leidmine
## Ülesannete jaotus
1) Martin --- Maatriksi operatsioonid ja tehete struktuurne representatsioon ning arvutus,
sh mälupesad ja LVS lahenduste leidmine
2) Harald --- Kasutajaliides ja sõne parsimine tehete andmestruktuurile.
\ No newline at end of file
1) Martin --- Maatriksi operatsioonid ja tehete struktuurne representatsioon ning arvutus.
2) Harald --- Kasutajaliides ja sõne parsimine tehete andmestruktuurile.
## Kasutajaliidese näide
```
> 2 + 2
4
> |{{1, 4, 3},{0, 4, 0}, {0, 0, 9}}|
36
> |-4|
4
> 6/2(1+2)
9
> {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}} + {{2, 4, 9}, {0, 4, 0}, {0, 0, 9}}
{{3, 6, 12}, {4, 9, 6}, {7, 8, 18}}
> store A
A = {{3, 6, 12}, {4, 9, 6}, {7, 8, 18}}
> list
A = {{3, 6, 12}, {4, 9, 6}, {7, 8, 18}}
B = {{}}
C = {{}}
D = {{}}
E = {{}}
F = {{}}
X = {{}}
Y = {{}}
Z = {{}}
> A*2
{{6, 12, 24}, {8, 18, 12}, {14, 16, 36}}
```
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment