Lab: Numerics with Numpy Day 1 - University of Montana

printnumpy.array([9,4,3],float) / numpy.array([3,2,2]) We can cast an array x of int types to an array of float types by using numpy.array(x, float). We can generate evenly spaced values using arange, numpy’s equivalent of range: #generatexfrom1.5to ................
................