Added numpy code and link

This commit is contained in:
Edward Bigos 2025-04-22 10:49:44 -04:00
parent 9b6411976e
commit 883afde41f
7 changed files with 123 additions and 0 deletions

View file

@ -0,0 +1,14 @@
import numpy as np
arr = np.array([[1, 2, 3], [4, 5, 6]])
print(f"Array = {arr}")
print("\n")
arr3x3 = np.array([ [1, 2, 3], [4, 5, 6], [7,8,9] ])
print(f"3X3 Array = {arr3x3}")
print("\n")
arr4x4 = np.array([ [1, 2, 3,44], [4, 5, 6, 66], [7,8,9, 99], [10,11,12,13]])
print(f"4X4 Array = {arr4x4}")