The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Music::Interval::Barycentric

VERSION

version 0.01_01

SYNOPSIS

 my @chords = get_chords(@ARGV);
 printf "D: %.3f\n", distance($chords[0], $chords[1]);
 print join(', ',barycenter(3)),"\n";
 print distance(@chords), "\n";
 print evenness_index($chords[0]);
 print orbit_distance(@chords), "\n";
 print forte_distance(@chords), "\n";

DESCRIPTION

Barycentric chord analysis

NAME

Music::Interval::Barycentric - Barycentric Musical Interval Space

FUNCTIONS

get_chords()

Return array references for CSV chords.

* This is a legacy method from fetching commandline arguments.

barycenter()

Return the barycenter (the "central coordinate") given an integer representing the number of notes in a chord.

distance()

Interval space distance metric between chords.

* This is used by the orbit_distance() and evenness_index() functions.

orbit_distance()

TODO

forte_distance()

TODO

cyclic_permutation()

Return the list of cyclic permutations of the given intervals.

evenness_index()

Return a chord distance from the barycenter.

SEE ALSO

http://www.amazon.com/Geometry-Musical-Chords-Interval-Representation/dp/145022797X

AUTHOR

Gene Boggs <gene@cpan.org>

COPYRIGHT

Copyright 2012, Gene Boggs

This code is licensed under the same terms as Perl itself.

AUTHOR

Gene Boggs <gene@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2014 by Gene Boggs.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.