aboutsummaryrefslogtreecommitdiff
path: root/examples/scale7.pl
blob: f5c35c7334dffb524dbabfb4235b7b422daea6ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/local/bin/perl 

# -*-Perl-*-

$file = "m3chord.scale";

open(OUT, ">$file");

$base = 27.5;

@ints = (1.2, 9/8, 1.2, 9/8, 9/8);
@ints = (1, 1.2, 4/3, 1.2 * (4/3), 16/9);
$phs = 0;


$octmult = 1;
while( $val < 22050 ){
    for $i (0..$#ints){
	$val = $base * $ints[$i] * $octmult;
	printf OUT "%.4f\n", $val;
    }
    $octmult *= 2;
}
close $file;
print "wrote to $file\n";