numpy.dtype

Ogni oggetto numpy.ndarray è accompagnato da un oggetto numpy.dtype (un’istanza della classe numpy.dtype) che fornisce informazioni sui suoi elementi Attributi Tipi numpy Charactercode LinguaggioC Valori numpy.int8 ‘b‘ char -128127 numpy.int16numpy.short ‘h‘ short -32 76832 767 numpy.int32numpy.intc ‘i‘ int -2 147 483 6482 147 483 647 numpy.int64numpy.int_ ‘l‘ long -9 223 372 036 854 775 8089 … Leggi tutto

Tutorial #1

BMI Calcolo del Body Mass Index per 2 liste di pesi e altezze import numpy as np WEIGHT = [ 81.65, 97.52, 95.25, 92.98, 86.18, 88.45 ] # liste HEIGHT = [  1.87,  1.87,  1.82,  1.91,  1.90,  1.85 ] weight = np.array(WEIGHT) # numpy.ndarray height = np.array(HEIGHT) bmi = weight/height**2 print(bmi) Kg to pounds import numpy as np KG_LBS = 2.20462262185 … Leggi tutto