PV_Copy:
Filter:
Classes | UGens > FFT

PV_Copy : PV_MagMul : PV_ChainUGen : WidthFirstUGen : UGen : AbstractFunction : Object

Copy an FFT buffer
Source: FFT.sc

Description

Copies the spectral frame in bufferA to bufferB. This allows for parallel processing of spectral data without the need for multiple FFT UGens. Further it allows to extract data at a given point in the FFT chain e.g. for monitoring purposes.

NOTE: As of SC 3.7 instances of PV_Copy are added automatically where necessary for parallel processing. Please see FFT Overview for the current implementation.

This document is provided for legacy purposes only. Existing code explicitly using PV_Copy should continue to work.

Class Methods

PV_Copy.new(bufferA, bufferB)

From superclass: PV_MagMul

Arguments:

bufferA

source buffer.

bufferB

destination buffer.

NOTE: bufferA and bufferB must be the same size.

Inherited class methods

Instance Methods

Inherited instance methods

Examples