Aligning elements

I’ve been thinking about the different ways of aligning sequences in music, trying to list the possibilities. For example with the three sequences a b, 1 2 3 and w x y z:

Flush left:

a b
1 2 3
w x y z

Flush right:

    a b
  1 2 3
w x y z

Truncate on the right at shortest:

a b
1 2
w x

Truncate on the left at shortest:

a b
2 3
y z

Truncate at longest, repeating:

a b a b
1 2 3 1
w x y z

Repeat to first common multiple (polymeter):

a b a b a b a b a b a b 
1 2 3 1 2 3 1 2 3 1 2 3
w x y z w x y z w x y z

Centre

  a b
 1 2 3
w x y z

Pad:

a     b
1  2  3
w x y z

I also thought about variants within these, based on e.g. whether the items are padded with ‘silence’ or stretched to fill the space. For example if we do this with ‘pad’, we get classic musical polyrhythms:

a-----b-----
1---2---3---
w--x--y--z--

Also the above examples assume the three sequences are played at the same time (i.e., stacked up with the a horizontal time dimension going to the right). They could alternatively be concatenated to create monophonic sequences, though.

I’d bet that this is well explored territory in e.g. typography for example (centred, justified text etc), but I don’t know much about that. Does someone have some typographic or other references for this sort of thing that they could share?

Donald Knuth’s TeXbook might be a good reference for text layout algorithms:

1 Like

I like these examples, they all seem useful to explore musically. A relevant concept from the SuperCollider language is the notion of “adverbs” (modifiers that can be used when combining arrays, or to modify the behaviour of any binary operator). Your examples above already cover some of these possibilities, but in case you’re interested:

http://doc.sccode.org/Reference/Adverbs.html

Glen.

1 Like

Nice list!

For reference, the Sc rule not above is f (for fold):

a b a b
1 2 3 2
w x y z

Also, t (for table) suggests various possibilities, but all rather longer…

a b a b a b a b a b a b a b a b a b a b a b a b
1 1 2 2 3 3 1 1 2 2 3 3 1 1 2 2 3 3 1 1 2 2 3 3
w w w w w w x x x x x x y y y y y y z z z z z z
1 Like

Good morning;
The ‘alignment of patterns’ makes me think of

1: fractal self-similarity

2: Christopher Alexander’s ‘A Pattern Language’ where he has meta patterns as well as core patterns.

{Please don’t bring up software patterns - 2 years to retirement and I upset easily 😎)

1 Like

A couple of additional suggestions from twitter:

Alignment of dna that geneticists do based on similarity from @amberfirefly:
image

CSS flexbox suggested by @james_bradbury_

flex items within a flex container demonstrating the different spacing options

The CSS flexbox example really was right under my nose! This makes me think about the very nice cascade system by @raphael for live coding musical patterns from CSS.

1 Like

Welcome @sporb! Ah yes we’ve discussed Alexander’s architectural patterns a little before, and talked a little about fractals as well, especially in the context of architecture and design within Africa and the African diaspora.

In this thread though I wanted to focus on strategies for aligning sequences in particular.

1 Like

I like the fold! A full cycle would be

a b a b a b a b a b a b
1 2 3 2 1 2 3 2 1 2 3 2 
w x y z y x w x y z y x 

It could then be represented as ‘a repeat to first common multiple/polymeter’, preceded by a transformation step to create the up/down structure.

A lovely interactive explorer of this from @raphael ! cascade/demos/start

1 Like