Compute the Matrix-Vector Multiplication

Given a matrix $A$ and a vector $b$, compute the matrix-vector multiplication $y = A\,b$.

$A = \begin{bmatrix} 0.19 & 0.84 & 0.08\\ 0.79 & 0.74 & 0.76\\\end{bmatrix}$

$b = \begin{bmatrix} 0.54\\ 0.00\\ 0.84\\\end{bmatrix}$

Correct answer
Student view placeholder
In student views this area is used for assessment and score info.
Staff information
Staff user:
Dev User
dev@example.com

Question:
Title:
Compute the Matrix-Vector Multiplication
Started at:
2024-09-19 17:47:25 (CDT)
Duration:
0 s
Show/Hide answer
{
  "C": {
    "_type": "ndarray",
    "_dtype": "float64",
    "_value": [
      [
        0.1698
      ],
      [
        1.065
      ]
    ]
  }
}