Recursive structure of MOS scales: Difference between revisions
| Line 16: | Line 16: | ||
== Finding the MOS pattern from nLms == | == Finding the MOS pattern from nLms == | ||
If you have aLbs, there are b chunks. In that case (a % b) of the chunks will have ceil(a/b) "L"s, the rest will have floor(a/b) "L"s. | |||
Example: | Example: | ||
We take 5L7s, which will have 7 chunks | |||
7 chunks | |||
The chunks must partition the 5 "L"s, and 5 = 1 + 1 + 1 + 1 + 1 + 0 + 0. | |||
LLLsLLs | So we get 5L2s, which we know is LLLsLLs and turns back to sL sL sL s sL sL s | ||
== Finding a generator == | == Finding a generator == | ||