Return numbers spaced evenly on a geometric progression but with complex inputs in Numpy


To return evenly spaced numbers on a geometric progression, use the numpy.geomspace() method in Python Numpy −

  • The 1st parameter is the "start" i.e. the start of the sequence
  • The 2nd parameter is the "end" i.e. the end of the sequence
  • The 3rd parameter is the num i.e. the number of samples to generate. Default is 50.

We have set complex inputs.

The start is the starting value of the sequence. The stop if the final value of the sequence, unless endpoint is False. In that case, num + 1 values are spaced over the interval in log-space, of which all but the last (a sequence of length num) are returned. The endpoint, if true, stop is the last sample. Otherwise, it is not included. Default is True.

The axis in the result to store the samples. Relevant only if start or stop are array-like. By default (0), the samples will be along a new axis inserted at the beginning. Use -1 to get an axis at the end.

Steps

At first, import the required library −

import numpy as np

Return evenly spaced numbers on a geometric progression, use the numpy.geomspace() method −

arr = np.geomspace(10j, 100j, num = 5)
print("Array...
", arr)

Get the type −

print("
Type...
", arr.dtype)

Get the dimensions −

print("
Dimensions...
",arr.ndim)

Get the shape −

print("
Shape...
",arr.shape)

Get the number of elements −

print("
Number of elements...
",arr.size)

Example

import numpy as np

# To return evenly spaced numbers on a geometric progression, use the numpy.geomspace() method in Python Numpy
# The 1st parameter is the "start" i.e. the start of the sequence
# The 2nd parameter is the "end" i.e. the end of the sequence
# The 3rd parameter is the num i.s the number of samples to generate. Default is 50.
# We have set complex inputs
arr = np.geomspace(10j, 100j, num = 5)
print("Array...
", arr) # Get the type print("
Type...
", arr.dtype) # Get the dimensions print("
Dimensions...
",arr.ndim) # Get the shape print("
Shape...
",arr.shape) # Get the number of elements print("
Number of elements...
",arr.size)

Output

Array...
[0. +10.j 0. +17.7827941j 0. +31.6227766j 0. +56.23413252j
0.+100.j ]

Type...
complex128

Dimensions...
1

Shape...
(5,)

Number of elements...
5

Updated on: 16-Feb-2022

84 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements