Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
fp2023:lab07 [2023/04/21 11:08] pdmatei |
fp2023:lab07 [2023/04/21 12:39] (current) pdmatei |
||
---|---|---|---|
Line 40: | Line 40: | ||
**7.1.7.** (!) Implement multiplication of two matrices. Think about the sequence of steps you want to perform. Transposition will be your first step. | **7.1.7.** (!) Implement multiplication of two matrices. Think about the sequence of steps you want to perform. Transposition will be your first step. | ||
<code scala> | <code scala> | ||
- | def mult(m: Matrix): Matrix = ??? | + | def mult(m1: Matrix, m2: Matrix): Matrix = ??? |
</code> | </code> | ||