Se luo taulukon käyttämällä lokiasteikolla tasaisesti erotettuja lukuja.
java tulostus
Syntaksi
numpy.logspace(start, stop, num, endpoint, base, dtype)
Parametrit
Se hyväksyy seuraavat parametrit.
- aloitus: Se edustaa intervallin aloitusarvoa kannassa.
- stop: Se edustaa välin pysäytysarvoa kantaosassa.
- num: Arvojen lukumäärä alueen välillä.
- endpoint: Se on boolen tyyppinen arvo. Se tekee stopin edustaman arvon intervallin viimeiseksi arvoksi.
- pohja: Se edustaa lokitilan pohjaa.
- dtype: Se edustaa taulukon kohteiden tietotyyppiä.
Palata
Määritetyllä alueella oleva matriisi palautetaan.
Esimerkki 1
import numpy as np arr = np.logspace(10, 20, num = 5, endpoint = True) print('The array over the given range is ',arr)
Lähtö:
The array over the given range is [1.00000000e+10 3.16227766e+12 1.00000000e+15 3.16227766e+17 1.00000000e+20]
Esimerkki 2
import numpy as np arr = np.logspace(10, 20, num = 5,base = 2, endpoint = True) print('The array over the given range is ',arr)
Lähtö:
The array over the given range is [1.02400000e+03 5.79261875e+03 3.27680000e+04 1.85363800e+05 1.04857600e+06]