update book

This commit is contained in:
Morten Hjorth-Jensen
2024-09-01 13:19:34 +02:00
parent 3fabb48112
commit b04bd79bc1
26 changed files with 11260 additions and 6648 deletions
@@ -7,7 +7,7 @@ Traceback (most recent call last):
return just_run(coro(*args, **kwargs))
File "/Users/mhjensen/miniforge3/envs/myenv/lib/python3.9/site-packages/nbclient/util.py", line 62, in just_run
return loop.run_until_complete(coro)
File "/Users/mhjensen/miniforge3/envs/myenv/lib/python3.9/asyncio/base_events.py", line 642, in run_until_complete
File "/Users/mhjensen/miniforge3/envs/myenv/lib/python3.9/asyncio/base_events.py", line 647, in run_until_complete
return future.result()
File "/Users/mhjensen/miniforge3/envs/myenv/lib/python3.9/site-packages/nbclient/client.py", line 663, in async_execute
await self.async_execute_cell(
@@ -24,7 +24,7 @@ Xinv = np.linlag.pinv(X)
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
Input In [1], in <cell line: 3>()
Cell In[6], line 3
 1 import numpy as np
 2 X = np.array( [ [1,2,3],[2,4,5],[3,5,6]])
----> 3 Xinv = np.linlag.pinv(X)