Search
Search Results
Search finished, found 11 page(s) matching the search query.
- numpy.logspace
...NumPy reference Routines and objects by topic Array creation routines numpy.logspace...
- numpy.logspace (Python function, in numpy.logspace)
- How to create arrays with regularly-spaced values
...d describe their recommended usage. The functions mentioned here are numpy.linspace numpy.arange numpy.geomspace numpy.logspace numpy.meshgrid numpy.mgrid numpy.ogrid 1D domains (intervals) linspace vs. arange Both numpy.linspace and nu...
- NumPy 1.12.0 Release Notes
...ew array creation function geomspace added The new function geomspace generates a geometric sequence. It is similar to logspace, but with start and stop specified directly: geomspace(start, stop) behaves the same as logspace(log10(start),...
- NumPy 1.16.0 Release Notes
...AS routines as numpy.dot, ensuring its performance is similar for large matrices. Start and stop arrays for linspace, logspace and geomspace These functions used to be limited to scalar stop and start values, but can now take arrays, whic...
- NumPy 1.25.0 Release Notes
...out passing the SeedSequence explicitly. Please see numpy.random.SeedSequence for more information. (gh-23195) numpy.logspace now supports a non-scalar base argument The base argument of numpy.logspace can now be array-like if it is broa...
- NumPy 1.9.0 Release Notes
...o added to allow convenient broadcasting to arrays of the original shape. Dtype parameter added to np.linspace and np.logspace The returned data type from the linspace and logspace functions can now be specified using the dtype parameter....
- NumPy quickstart
...the full list. Array Creationarange, array, copy, empty, empty_like, eye, fromfile, fromfunction, identity, linspace, logspace, mgrid, ogrid, ones, ones_like, r_, zeros, zeros_like Conversionsndarray.astype, atleast_1d, atleast_2d, atlea...
- numpy.geomspace
..., dtype=None, axis=0)[source] Return numbers spaced evenly on a log scale (a geometric progression). This is similar to logspace, but with endpoints specified directly. Each output sample is a constant multiple of the previous. Parameters:...
- numpy.linspace
...r of samples). geomspaceSimilar to linspace, but with numbers spaced evenly on a log scale (a geometric progression). logspaceSimilar to geomspace, but with the end points specified as logarithms. How to create arrays with regularly-spac...
- numpy.logspace
...NumPy reference Routines and objects by topic Array creation routines numpy.logspace...