Given this data:

@AoA = ( [ 2, 3, 4, 5 ], [ 2, 3, 4, 5 ], [ 2, 3, 4, 5 ], );

What i want is something like this:

@AoA = ( [ 3, 2, 4, 5 ], [ 5, 3, 2, 4 ], [ 2, 5, 4, 3 ], ); # many more

But not:

@AoA = ( [ 3, 2, 4, 5 ], [ 4, 3, 2, 5 ], [ 2, 5, 4, 3 ], );

And not:

@AoA = ( [ 3, 2, 4, 5 ], [ 5, 3, 2, 4 ], [ 3, 2, 4, 5 ], );

I have no plan for the moment. And probably even the title of this question is bad.

Thanks in advance for any advice.

Update: Thanks to all for the kind and inspiring replies. I guess i need to rethink my specs, right?

Some words about the background. In the room where i use to record there is too much reverb. By chance i stumbled over this funny video. A DIY "Acoustic Skyline Diffuser". The carpentry work is fubar but the idea is good and the thing looks good. I would use some precut MDF panel and some precut balsa blocks instead and good is. But i wondered how to find a distribution for the blocks.

Another interesting question is if the proportions of the length of the blocks should be integer or not to reach maximum diffusion. But i'm not an audio engineer. And this problem is far beyond this forum. Another solution would be to buy a pro diffusor and forget about the DIY approach.

Best regards, Karl

«The Crux of the Biscuit is the Apostrophe»

perl -MCrypt::CBC -E 'say Crypt::CBC->new(-key=>'kgb',-cipher=>"Blowfish")->decrypt_hex($ENV{KARL});'Help


In reply to How to shuffle this AoA by karlgoethebier

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.