1class:: Delay1
2summary:: Single sample delay.
3related:: Classes/Delay2
4categories::  UGens>Delays
5
6
7Description::
8
9Delays the input by 1 audio frame or control period.
10
11
12classmethods::
13
14method::ar, kr
15
16argument::in
17Input signal.
18
19argument::mul
20Output will be multiplied by this value.
21
22argument::add
23This value will be added to the output.
24
25discussion::
26For audio-rate signals the delay is 1 audio frame, and for control-rate signals the delay is 1 control period.
27
28
29Examples::
30
31code::
32
33(
34plot({
35	var z;
36	z = Dust.ar(1000);
37	[z, z - Delay1.ar(z)] 	// [ original, subtract delayed from original ]
38}))
39
40::
41
42