Online Matrix-Vector Multiplication: Difference between revisions

From Algorithm Wiki
Jump to navigation Jump to search
(Created page with "{{DISPLAYTITLE:Online Matrix-Vector Multiplication (Matrix-Vector Multiplication)}} == Description == We are given an $n \times n$ matrix $M$ and will receive $n$ column-vectors of size $n$, denoted by $v_1, \ldots , v_n$, one by one. After seeing each vector $v_i$, we have to output the product $Mv_i$ before we can see the next vector. == Related Problems == Related: Online Vector-Matrix-Vector Multiplication == Parameters == <pre>n: dimension of square matr...")
 
No edit summary
Line 10: Line 10:
== Parameters ==  
== Parameters ==  


<pre>n: dimension of square matrix, number of vectors, size of vectors</pre>
n: dimension of square matrix, number of vectors, size of vectors


== Table of Algorithms ==  
== Table of Algorithms ==  

Revision as of 13:04, 15 February 2023

Description

We are given an $n \times n$ matrix $M$ and will receive $n$ column-vectors of size $n$, denoted by $v_1, \ldots , v_n$, one by one. After seeing each vector $v_i$, we have to output the product $Mv_i$ before we can see the next vector.

Related Problems

Related: Online Vector-Matrix-Vector Multiplication

Parameters

n: dimension of square matrix, number of vectors, size of vectors

Table of Algorithms

Currently no algorithms in our database for the given problem.

References/Citation

https://epubs.siam.org/doi/abs/10.1137/1.9781611974782.142