<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Mapping and sounding chords with SAS in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Mapping-and-sounding-chords-with-SAS/m-p/515139#M2873</link>
    <description>&lt;P&gt;This post is a sequel to my previous post, titled "&lt;A href="https://communities.sas.com/t5/New-SAS-User/Making-music-with-SAS/m-p/510619#M1995" target="_self"&gt;Making music with SAS&lt;/A&gt;." Here are a bunch of thoughts/ &lt;STRONG&gt;&lt;EM&gt;questions in bold&lt;/EM&gt;&lt;/STRONG&gt;, all revolving around an idea of making music chords from array coordinates of the notes. There is probably software devoted just to that (&lt;EM&gt;&lt;STRONG&gt;is&lt;/STRONG&gt;&lt;STRONG&gt;&lt;EM&gt;&amp;nbsp;&lt;/EM&gt;there&lt;/STRONG&gt;&lt;STRONG&gt;&amp;nbsp;a free one?&lt;/STRONG&gt;&lt;/EM&gt;),&amp;nbsp; but I would like to discuss how it is done in SAS. Although there are many questions, they&amp;nbsp;belong to the same topic.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The &lt;STRONG&gt;&lt;FONT color="#000000"&gt;CALL SOUND&lt;/FONT&gt;&lt;/STRONG&gt; routine sounds the system bell.&lt;STRONG&gt;&lt;EM&gt;&lt;FONT color="#000000"&gt; Is it kind of like "\a" command in Python?&lt;/FONT&gt;&lt;/EM&gt;&amp;nbsp;&lt;/STRONG&gt;Unlike "\a" command, &lt;EM&gt;&lt;STRONG&gt;&lt;FONT color="#000000"&gt;CALL SOUND can modify the frequency and duration of the bell. How does it do it?&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#000000"&gt;&lt;EM&gt;What is that system bell? Is there only one? The main question is, can these sounds be simultaneous, producing music chords?&lt;/EM&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;EM&gt;&lt;STRONG&gt;For example, if there are input coordinates of chord&amp;nbsp;note positions, like [ 0, 3, 6, 9 ], where A is 0, C sharp is 3 and so on, can the chord sound all at once?&lt;/STRONG&gt;&lt;STRONG&gt;&amp;nbsp;If not, how would you make arpeggio&amp;nbsp;(sequential) sounds from these arrays?&amp;nbsp;&lt;/STRONG&gt;(The answer to the&amp;nbsp;previous question can probably base on&amp;nbsp;&lt;FONT color="#3366FF"&gt;&lt;A href="https://communities.sas.com/t5/New-SAS-User/Making-music-with-SAS/m-p/510619#M1995" target="_self"&gt;Rick Wicklin's code for a Christmas Carol&lt;/A&gt;&lt;/FONT&gt;.)&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;EM&gt;&lt;STRONG&gt;How would you map this array to the sounds?&amp;nbsp;&lt;/STRONG&gt;(Last question seems like it would need a hash.)&amp;nbsp;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;FONT color="#000000"&gt;References&lt;/FONT&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;A href="https://lexjansen.com/search/searchresults.php?q=music" target="_blank"&gt;https://lexjansen.com/search/searchresults.php?q=music&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 21 Nov 2018 16:25:26 GMT</pubDate>
    <dc:creator>pink_poodle</dc:creator>
    <dc:date>2018-11-21T16:25:26Z</dc:date>
    <item>
      <title>Mapping and sounding chords with SAS</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Mapping-and-sounding-chords-with-SAS/m-p/515139#M2873</link>
      <description>&lt;P&gt;This post is a sequel to my previous post, titled "&lt;A href="https://communities.sas.com/t5/New-SAS-User/Making-music-with-SAS/m-p/510619#M1995" target="_self"&gt;Making music with SAS&lt;/A&gt;." Here are a bunch of thoughts/ &lt;STRONG&gt;&lt;EM&gt;questions in bold&lt;/EM&gt;&lt;/STRONG&gt;, all revolving around an idea of making music chords from array coordinates of the notes. There is probably software devoted just to that (&lt;EM&gt;&lt;STRONG&gt;is&lt;/STRONG&gt;&lt;STRONG&gt;&lt;EM&gt;&amp;nbsp;&lt;/EM&gt;there&lt;/STRONG&gt;&lt;STRONG&gt;&amp;nbsp;a free one?&lt;/STRONG&gt;&lt;/EM&gt;),&amp;nbsp; but I would like to discuss how it is done in SAS. Although there are many questions, they&amp;nbsp;belong to the same topic.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The &lt;STRONG&gt;&lt;FONT color="#000000"&gt;CALL SOUND&lt;/FONT&gt;&lt;/STRONG&gt; routine sounds the system bell.&lt;STRONG&gt;&lt;EM&gt;&lt;FONT color="#000000"&gt; Is it kind of like "\a" command in Python?&lt;/FONT&gt;&lt;/EM&gt;&amp;nbsp;&lt;/STRONG&gt;Unlike "\a" command, &lt;EM&gt;&lt;STRONG&gt;&lt;FONT color="#000000"&gt;CALL SOUND can modify the frequency and duration of the bell. How does it do it?&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#000000"&gt;&lt;EM&gt;What is that system bell? Is there only one? The main question is, can these sounds be simultaneous, producing music chords?&lt;/EM&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;EM&gt;&lt;STRONG&gt;For example, if there are input coordinates of chord&amp;nbsp;note positions, like [ 0, 3, 6, 9 ], where A is 0, C sharp is 3 and so on, can the chord sound all at once?&lt;/STRONG&gt;&lt;STRONG&gt;&amp;nbsp;If not, how would you make arpeggio&amp;nbsp;(sequential) sounds from these arrays?&amp;nbsp;&lt;/STRONG&gt;(The answer to the&amp;nbsp;previous question can probably base on&amp;nbsp;&lt;FONT color="#3366FF"&gt;&lt;A href="https://communities.sas.com/t5/New-SAS-User/Making-music-with-SAS/m-p/510619#M1995" target="_self"&gt;Rick Wicklin's code for a Christmas Carol&lt;/A&gt;&lt;/FONT&gt;.)&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;EM&gt;&lt;STRONG&gt;How would you map this array to the sounds?&amp;nbsp;&lt;/STRONG&gt;(Last question seems like it would need a hash.)&amp;nbsp;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;FONT color="#000000"&gt;References&lt;/FONT&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;A href="https://lexjansen.com/search/searchresults.php?q=music" target="_blank"&gt;https://lexjansen.com/search/searchresults.php?q=music&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Nov 2018 16:25:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Mapping-and-sounding-chords-with-SAS/m-p/515139#M2873</guid>
      <dc:creator>pink_poodle</dc:creator>
      <dc:date>2018-11-21T16:25:26Z</dc:date>
    </item>
    <item>
      <title>Re: Mapping and sounding chords with SAS</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Mapping-and-sounding-chords-with-SAS/m-p/515194#M2878</link>
      <description>&lt;P&gt;I think this goes back to how sound was produced in the early DOS/PC days. The sound was created by the processor by sending pulses to the speaker. So it was monophonic and caused the system to stop for the duration of the sound (eg when the BEL character was encountered in a text stream). This started to change with the advent of sound cards.&lt;/P&gt;
&lt;P&gt;From this, I guess it won't be able to produce chords, at least not from a single SAS session.&lt;/P&gt;
&lt;P&gt;Also note that the routine is available on Windows only.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Nov 2018 18:20:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Mapping-and-sounding-chords-with-SAS/m-p/515194#M2878</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-11-21T18:20:36Z</dc:date>
    </item>
  </channel>
</rss>

