From 290e6a11bd4cdc7b4c80135d74dad568d6276675 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wojciech=20P=C4=99drak?= Date: Sat, 5 Oct 2019 22:59:02 +0200 Subject: [PATCH] Correction of Problem 1f --- assignment1/Assignment1.ipynb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/assignment1/Assignment1.ipynb b/assignment1/Assignment1.ipynb index 2ed7312..30ef445 100644 --- a/assignment1/Assignment1.ipynb +++ b/assignment1/Assignment1.ipynb @@ -407,11 +407,11 @@ "colab_type": "text" }, "source": [ - "**f) Compute with matrix/vector operations using values from c).**\n", + "**f) Compute with matrix/vector operations.**\n", "\n", "**NOTE:** Every multiplication (and power) in this subtask is a [matrix multiplication](https://en.wikipedia.org/wiki/Matrix_multiplication).\n", - "1. $xMat=[0, 1, ..., 6][10, 20, ..., 60]^T$,\n", - "2. $yMat=[10, 20, ..., 60]^T[0, 1, ..., 6]$\n", + "1. $xMat=[0, 1, ..., 6][0, 10, 20, ..., 60]^T$,\n", + "2. $yMat=[0, 10, 20, ..., 60]^T[0, 1, ..., 6]$\n", "
\n", "(remember, that matrix multiplication is not commutative)." ]