scipy 1.8.0 Pypi GitHub Homepage
Other Docs
ParametersReturnsBackRef
square(t, duty=0.5)

The square wave has a period 2*pi , has value +1 from 0 to 2*pi*duty and -1 from 2*pi*duty to 2*pi . :None:None:`duty` must be in the interval [0,1].

Note that this is not band-limited. It produces an infinite number of harmonics, which are aliased back and forth across the frequency spectrum.

Parameters

t : array_like

The input time array.

duty : array_like, optional

Duty cycle. Default is 0.5 (50% duty cycle). If an array, causes wave shape to change over time, and must be the same length as t.

Returns

y : ndarray

Output array containing the square waveform.

Return a periodic square-wave waveform.

Examples

A 5 Hz waveform sampled at 500 Hz for 1 second:

>>> from scipy import signal
... import matplotlib.pyplot as plt
... t = np.linspace(0, 1, 500, endpoint=False)
... plt.plot(t, signal.square(2 * np.pi * 5 * t))
... plt.ylim(-2, 2)

A pulse-width modulated sine wave:

>>> plt.figure()
... sig = np.sin(2 * np.pi * t)
... pwm = signal.square(2 * np.pi * 30 * t, duty=(sig + 1)/2)
... plt.subplot(2, 1, 1)
... plt.plot(t, sig)
... plt.subplot(2, 1, 2)
... plt.plot(t, pwm)
... plt.ylim(-1.5, 1.5)
See :

Back References

The following pages refer to to this document either explicitly or contain code examples using this.

scipy.signal._waveforms.square

Local connectivity graph

Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.

Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)

SVG is more flexible but power hungry; and does not scale well to 50 + nodes.

All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them


GitHub : /scipy/signal/_waveforms.py#87
type: <class 'function'>
Commit: