Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

Jupyter notebook Chapter 4.ipynb

28 views
Kernel: Python 3

Chapter 4- External Libraries for Engineering

import numpy myvector = numpy.array([5,3,7],dtype = numpy.float64) myarray = numpy.array([[2,3],[6.7,1.0]]) print (myvector) print (myarray)