08. Scoping and Plotting:
Filter:
Tutorials/Getting-Started | Tutorials > Getting-Started

08. Scoping and Plotting

Getting Started With SuperCollider

Scoping Out Some Plots

Function has two other useful audio related methods. The first you've already seen some results of, Function-plot:

This makes a graph of the signal produced by the output of the Function. You can specify some arguments, such as the duration. The default is 0.01 seconds, but you can set it to anything you want.

This can be useful to check what's happening, and if you're getting the output you think you're getting.

The second method, Function-scope, shows an oscilloscope-like display of the Function's output.

So let's try to scope some audio:

This should open a window which looks something like this:

This also works for multiple channels:

Scope also has a zoom argument. Higher values 'zoom out'.

Like Function-plot, Function-scope can be useful for testing purposes, and to see if you're actually getting out what you think you are.

Scoping on Demand

You can also scope the output of the server at any time, by calling 'scope' on it.

You can do the same thing by clicking on the server window and pressing the 's' key.

For more information see:

Function, Server, Stethoscope

Suggested Exercise

Experiment with scoping and plotting some of the Function examples from earlier sections, or some Functions of your own creation. Try experimenting with different duration or zoom values.

____________________

This document is part of the tutorial Getting Started With SuperCollider.

Click here to go on to the next section: 09. Getting Help

Click here to return to the table of Contents: 00. Getting Started With SC