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

# -*-Perl-*-

$file = "4th.scale";

open(OUT, ">$file");

$base = 27.5;

@ints = (1.2, 1.25);
$phs = 0;

while( $base < 22050 ){
    printf OUT "%.4f\n", $base;
    $base *= 1.33333333333;
}
close $file;
print "wrote to $file\n";