SignalProcessing
PowerSpectrum
compute the power spectrum of an array of samples
Calling Sequence
Parameters
Options
Description
Thread Safety
Examples
Compatibility
PowerSpectrum(A)
PowerSpectrum(Br, Bi)
A
-
Array of complex numeric values; the signal
Br, Bi
Arrays of real numeric values corresponding to the real and imaginary parts of the signal
container : Array, predefined Array for holding result
The PowerSpectrum(A) command computes the power spectrum of the Array A and returns the result in an Array of datatype float[8]. The power spectrum is the square of the magnitude.
The PowerSpectrum(Br, Bi) command computes the same result as the PowerSpectrum(A) command, but the real and imaginary parts of the complex numbers are stored separately in the Arrays Br and Bi.
Before the code performing the computation runs, the input Array(s) are converted to datatype complex[8] (for the calling sequence with A) or float[8] (for the calling sequence with Br and Bi) if they do not have this datatype already. For this reason, it is most efficient if the input Array(s) have this datatype beforehand.
If the container=C option is provided, then the results are put into C and C is returned. With this option, no additional memory is allocated to store the result. The container must be an Array having datatype float[8] and the same size as A, Br or Bi.
The SignalProcessing[PowerSpectrum] command is thread-safe as of Maple 17.
For more information on thread safety, see index/threadsafe.
with⁡SignalProcessing:
a ≔ Array⁡1.+I,2.−3.⁢I,4.,−1.⁢I,'datatype'='complex'8
a≔1.+I2.−3.⁢I4.+0.⁢I−I
PowerSpectrum⁡a
2.13.16.1.
c ≔ Array⁡1..numelems⁡a,'datatype'='float'8:
PowerSpectrum⁡a,'container'=c
c
r ≔ Array⁡1.,2.,4.,0.,'datatype'='float'8
r≔1.2.4.0.
i ≔ Array⁡1.,−3.,0.,−1.,'datatype'='float'8
i≔1.−3.0.−1.
PowerSpectrum⁡r,i
PowerSpectrum⁡r,i,'container'=c
m ≔ Array⁡1..2,1..2,1.+I,2.−I,−3.+2.,−4.+2⁢I,'datatype'='complex'8
m≔1.+I2.−I−1.+0.⁢I−4.+2.⁢I
PowerSpectrum⁡m
2.5.1.20.
n ≔ Array⁡1..2,1..2,'datatype'='float'8:
PowerSpectrum⁡m,'container'=n
n
The SignalProcessing[PowerSpectrum] command was introduced in Maple 17.
For more information on Maple 17 changes, see Updates in Maple 17.
See Also
SignalProcessing[Magnitude]
Download Help Document
What kind of issue would you like to report? (Optional)