linux: shared memory interface - link with librt
[supercollider.git] / HelpSource / Tutorials / Getting-Started / 08-Scoping-and-Plotting.schelp
blob0007b1f05a7f836bbaf1d69a017992cbeca420fa
1 title:: 08. Scoping and Plotting
2 summary:: Getting Started With SuperCollider
3 categories:: Tutorials>Getting-Started
4 related:: Tutorials/Getting-Started/00-Getting-Started-With-SC
6 section::Scoping Out Some Plots
8 Function has two other useful audio related methods. The first you've already seen some results of, Function-plot:
10 code::
11 { PinkNoise.ar(0.2) + SinOsc.ar(440, 0, 0.2) + Saw.ar(660, 0.2) }.plot;
14 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.
16 code::
17 { PinkNoise.ar(0.2) + SinOsc.ar(440, 0, 0.2) + Saw.ar(660, 0.2) }.plot(1);
20 This can be useful to check what's happening, and if you're getting the output you think you're getting.
22 The second method, Function-scope, shows an oscilloscope-like display of the Function's output. Scoping works a little bit differently depending on the operating system and GUI framework that you're using. So far you have been using the local server. When you want to use the oscilloscope, the local server is okay for Windows, but in Mac/Linux environments, you will have to use the "internal" server for scope.
24 If you need to use the internal server, you'll need to boot it before it will work. You can do this using the internal server window
26 image::Scoping-and-Plotting00.png::
28 or you can do it in code, like so:
30 code::
31 Server.internal.boot;
34 Then click on the '-> default' button on the internal server's window to set that server to be the default, and store it in the variable 's'. Thereafter, that will be the server on which all audio is played, unless you specify another one. Since Function-scope only works with the internal server, however, we want the audio play there!
36 So let's try to scope some audio:
38 code::
39 { PinkNoise.ar(0.2) + SinOsc.ar(440, 0, 0.2) + Saw.ar(660, 0.2) }.scope;
42 This should open a window which looks something like this:
44 image::Scoping-and-Plotting01.png::
46 This also works for multiple channels:
48 code::
49 { [SinOsc.ar(440, 0, 0.2), SinOsc.ar(442, 0, 0.2)] }.scope;
52 Scope also has a zoom argument. Higher values 'zoom out'.
54 code::
55 { [SinOsc.ar(440, 0, 0.2), SinOsc.ar(442, 0, 0.2)] }.scope(zoom: 10);
58 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.
60 section::Scoping on Demand
62 You can also scope the output of the internal server at any time, by calling 'scope' on it.
64 code::
65 { [SinOsc.ar(440, 0, 0.2), SinOsc.ar(442, 0, 0.2)] }.play(Server.internal);
66 Server.internal.scope; // you could also use 's' if the internal is the default
69 You can do the same thing by clicking on the internal server window and pressing the 's' key.
71 section::Local vs. Internal
73 If you're wondering what's the difference between the local and the internal servers, it's relatively straightforward: The internal server runs as a process within the client app; basically a program within a program. The main advantage of this is that it allows the two applications to share memory, which allows for things like realtime scoping of audio. The disadvantage is that the two are then interdependent, so if the client crashes, so does the server.
75 For more information see:
77 link::Classes/Function::, link::Classes/Server::, link::Classes/Stethoscope::
79 section::Suggested Exercise
81 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.
83 ____________________
85 This document is part of the tutorial strong::Getting Started With SuperCollider::.
87 Click here to go on to the next section: link::Tutorials/Getting-Started/09-Getting-Help::
89 Click here to return to the table of Contents: link::Tutorials/Getting-Started/00-Getting-Started-With-SC::