Array - Python

  • A = numpy.array(L) => Make an Array from a List using numpy Module
  • A = numpy.arrange(start, stop, step, dtype) => Make an Array
  • A = numpy.linespace(start, stop, num) => Make an Array by giving number of values
  • A.shape
  • A.itemsize
  • A.dtype => Returns data type of the array
  • numpy.log(A)
Share: