Snippets

Alexander Hanel Linear Algebra Notes

Created by Alexander Hanel

File notes.md Added

  • Ignore whitespace
  • Hide word diff
+```Python
+def format_vect(size,value):
+	return [value for x in range(0,size)]
+
+def add_vectors(one, two):
+	return map(sum, zip(one,two))
+    
+def mult_vectors(one, two):
+	return [aa * bb for aa, bb in zip(one, two)]
+```
HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.