1

I'm looking at a Hanning window patch:

Hanning window pure data patch

In it, there is an object just called s. I'm guessing it writes its output to $0-hann. However, I'd like to know for certain, and I'm having trouble finding documentation for it either in the documentation that comes with Pure Data or online. The source for Pure Data is on GitHub, but s is very hard to search for. Does anyone know where I can find out definitively what it and other built-in objects do? To find out how tabreceive got its block size, I had to read the Pure Data source.

Henry Ecker
  • 34,399
  • 18
  • 41
  • 57
Jim
  • 1,014
  • 1
  • 11
  • 22

1 Answers1

3

[s ] is an alias for [send]. You can right-click the object and select help to display the help of the corresponding object.

  • Thank you! I found that out a few hours after I asked that, and it is invaluable. – Jim Sep 17 '21 at 01:13