RosettaCodeData/Task/Element-wise-operations/00DESCRIPTION

19 lines
504 B
Text
Raw Permalink Normal View History

2016-12-05 22:15:40 +01:00
This task is similar to:
::*   [[Matrix multiplication]]
::*   [[Matrix transposition]]
2013-04-10 16:57:12 -07:00
2016-12-05 22:15:40 +01:00
;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>
2013-04-10 16:57:12 -07:00
Extend the task if necessary to include additional basic operations, which should not require their own specialised task.
2016-12-05 22:15:40 +01:00
<br><br>