| Lab | Description | Notes |
|---|---|---|
| Scalars & Vectors | Implement and compare the performance of vector addition and dot product using standard Python lists and NumPy arrays, measuring the execution time for both implementations on large vectors to observe speed differences. | Lab-001 |
| Matrix Multiplication Visualized | Implement matrix multiplication using triple loops, then compare with np.dot. Visualize row-vs-column major operations. | Lab-002 |