Submit
Browse
Anonymous
Login
RSS
SuperCollider Code
Fork Code: Comparing M3, M2, P5 in Just Intonation and ET12
name
code content
// Handy code for quick class demonstrations. // Comparing a few intervals - Just Intonation versus 12-tone Equal Tempered // Major third (just) Ndef(\a, { Saw.ar(freq: [60.midicps, 60.midicps * 5/4], mul: 0.1) }).play // Major third (ET12) Ndef(\a, { Saw.ar(freq: [60.midicps, 64.midicps], mul: 0.1) }).play; // Major second (just) Ndef(\a, { Saw.ar(freq: [60.midicps, 60.midicps * 9/8], mul: 0.1) }).play // Major second (ET) Ndef(\a, { Saw.ar(freq: [60.midicps, 62.midicps], mul: 0.1) }).play; // Perfect fifth (just) Ndef(\a, { Saw.ar(freq: [60.midicps, 60.midicps * 3/2], mul: 0.1) }).play // Perfect fifth (ET) Ndef(\a, { Saw.ar(freq: [60.midicps, 67.midicps], mul: 0.1) });
code description
Simple handy code for quick class demonstrations. Hear and compare a few intervals in Just Intonation versus 12-tone Equal Tempered tuning.
use markdown for formating
category tags
comma separated, i.g. "wild, siren" (do not enter default SC class names, please)
ancestor(s)
comma separated identificators, i.g. "1-C,1-1,1-4M,1-x"
Private?
the code will be accessible by direct url and not visible in public activity
signup to submit public code without captcha
comment of change