20 lines
506 B
Text
20 lines
506 B
Text
|
|
This task is similar to:
|
||
|
|
::* [[Matrix multiplication]]
|
||
|
|
::* [[Matrix transposition]]
|
||
|
|
|
||
|
|
|
||
|
|
;Task:
|
||
|
|
Implement basic element-wise matrix-matrix and scalar-matrix operations, which can be referred to in other, higher-order tasks.
|
||
|
|
|
||
|
|
Implement:
|
||
|
|
:::* addition
|
||
|
|
:::* subtraction
|
||
|
|
:::* multiplication
|
||
|
|
:::* division
|
||
|
|
:::* exponentiation
|
||
|
|
|
||
|
|
<br>
|
||
|
|
Extend the task if necessary to include additional basic operations, which should not require their own specialised task.
|
||
|
|
<br><br>
|
||
|
|
|