Skip to content

Commit

Permalink
Create 01_vector.py
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasnield authored Jan 3, 2021
0 parents commit eceb2dd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.pptx filter=lfs diff=lfs merge=lfs -text
7 changes: 7 additions & 0 deletions linear_algebra/01_vector.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
from numpy import array

data = [4.0, 1.0, 2.0]
v = array(data)

# display vector
print(v)

0 comments on commit eceb2dd

Please sign in to comment.