... | @@ -259,9 +259,9 @@ Next... let us jump to the `main` function and... |
... | @@ -259,9 +259,9 @@ Next... let us jump to the `main` function and... |
|
|
|
|
|
1. set up the input data (points)
|
|
1. set up the input data (points)
|
|
|
|
|
|
```python
|
|
```python
|
|
points = [(0., 0.), (1., 1.), (2., 4.)]
|
|
points = [(0., 0.), (1., 1.), (2., 4.)]
|
|
```
|
|
```
|
|
|
|
|
|
2. create the `X` matrix
|
|
2. create the `X` matrix
|
|
|
|
|
... | @@ -281,9 +281,9 @@ Next... let us jump to the `main` function and... |
... | @@ -281,9 +281,9 @@ Next... let us jump to the `main` function and... |
|
|
|
|
|
4. compute X-transpose
|
|
4. compute X-transpose
|
|
|
|
|
|
```python
|
|
```python
|
|
matrix_XT = matrix_X.transpose()
|
|
matrix_XT = matrix_X.transpose()
|
|
```
|
|
```
|
|
|
|
|
|
After setting everything up... it is time for a couple matrix multiplications.
|
|
After setting everything up... it is time for a couple matrix multiplications.
|
|
|
|
|
... | | ... | |