aboutsummaryrefslogtreecommitdiff
path: root/examples/scale6.pl
blob: 81f313f4117d594a0a40e6239279f4520ce203df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/local/bin/perl 

# -*-Perl-*-

$file = "octfifth.scale";

open(OUT, ">$file");

$base = 27.5;

@ints = (1.5, 4/3);
$phs = 0;

while( $base < 22050 ){
    printf OUT "%.4f\n", $base;
    $base *= $ints[$phs++];
    $phs %= 2;
}
close $file;
print "wrote to $file\n";