<?xml version="1.0" encoding="UTF-8"?>
	<rss version="2.0"
		xmlns:content="http://purl.org/rss/1.0/modules/content/"
		xmlns:wfw="http://wellformedweb.org/CommentAPI/"
		xmlns:dc="http://purl.org/dc/elements/1.1/"
		xmlns:atom="http://www.w3.org/2005/Atom"

			>

	<channel>
		<title>Cycling 74  &#187;  Topic: mapping MIDI velocity to 0. to 1. range (non-linear)</title>
		<atom:link href="http://cycling74.com/forums/topic/mapping-midi-velocity-to-0-to-1-range-non-linear/feed" rel="self" type="application/rss+xml" />
		<link>http://cycling74.com/forums/topic/mapping-midi-velocity-to-0-to-1-range-non-linear/feed</link>
		<description></description>
		<pubDate>Wed, 19 Jun 2013 19:40:04 +0000</pubDate>
		<generator>http://bbpress.org/?v=2.2.4</generator>
		<language></language>

		
														
					
				<item>
					<guid>http://cycling74.com/forums/topic/mapping-midi-velocity-to-0-to-1-range-non-linear/#post-41208</guid>
					<title><![CDATA[mapping MIDI velocity to 0. to 1. range (non-linear)]]></title>
					<link>http://cycling74.com/forums/topic/mapping-midi-velocity-to-0-to-1-range-non-linear/#post-41208</link>
					<pubDate>Fri, 05 Dec 2008 19:16:27 +0000</pubDate>
					<dc:creator>Mitch Turner</dc:creator>

					<description>
						<![CDATA[
						<p>I want to efficiently map MIDI velocity (0 to 127) into an amplitude range from 0 to 1. I want it to be a non-linear mapping. </p>
<p>I&#8217;m doing this:</p>
<p>input_value (0 to 127 MIDI velocities)<br />
|<br />
[pow 4.]<br />
|<br />
[/ 260144640.]<br />
|<br />
output_value (0. to 1. for use with a [*~] object)</p>
<p>Is there a more efficient way to do this using standard math objects?  </p>
<p>Also, how would I write the above using the [expr ] object?</p>
<p>Thanks in advance,<br />
Mitch</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/mapping-midi-velocity-to-0-to-1-range-non-linear/#post-146525</guid>
					<title><![CDATA[Re: mapping MIDI velocity to 0. to 1. range (non-linear)]]></title>
					<link>http://cycling74.com/forums/topic/mapping-midi-velocity-to-0-to-1-range-non-linear/#post-146525</link>
					<pubDate>Fri, 05 Dec 2008 19:22:32 +0000</pubDate>
					<dc:creator>MIB</dc:creator>

					<description>
						<![CDATA[
						<p>do you know about linedrive and scale?? both can do exponential mapping.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/mapping-midi-velocity-to-0-to-1-range-non-linear/#post-146526</guid>
					<title><![CDATA[Re: mapping MIDI velocity to 0. to 1. range (non-linear)]]></title>
					<link>http://cycling74.com/forums/topic/mapping-midi-velocity-to-0-to-1-range-non-linear/#post-146526</link>
					<pubDate>Fri, 05 Dec 2008 19:32:42 +0000</pubDate>
					<dc:creator>Mitch Turner</dc:creator>

					<description>
						<![CDATA[
						<p>Yes, I know about them.  I&#8217;d like to be able to port this over to Pd very easily.  I&#8217;n not sure they are available for Pd.</p>
<p>Mitch</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/mapping-midi-velocity-to-0-to-1-range-non-linear/#post-146527</guid>
					<title><![CDATA[Re: mapping MIDI velocity to 0. to 1. range (non-linear)]]></title>
					<link>http://cycling74.com/forums/topic/mapping-midi-velocity-to-0-to-1-range-non-linear/#post-146527</link>
					<pubDate>Fri, 05 Dec 2008 19:34:38 +0000</pubDate>
					<dc:creator>Luke Hall</dc:creator>

					<description>
						<![CDATA[
						<p>I usually use [expr pow(($i1/127.),$f2)]. If the right inlet is 1 the conversion is linear. I&#8217;d recommend starting with something like 0.7 and adjusting it from there.</p>
<p>lh</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/mapping-midi-velocity-to-0-to-1-range-non-linear/#post-146528</guid>
					<title><![CDATA[Re: mapping MIDI velocity to 0. to 1. range (non-linear)]]></title>
					<link>http://cycling74.com/forums/topic/mapping-midi-velocity-to-0-to-1-range-non-linear/#post-146528</link>
					<pubDate>Fri, 05 Dec 2008 22:11:07 +0000</pubDate>
					<dc:creator>Peter Castine</dc:creator>

					<description>
						<![CDATA[
						<p>The lp.scampf object from Litter Power will do this with its default settings and a &#8216;pow $1&#8242; or &#8216;exp $1&#8242; message, where the parameter controls the steepness of the curve.</p>
<p>Later on I read you want a Pd solution. In that case you&#8217;ll probably have to roll your own. For better or worse, I do not see a Litter Power for Pd in the immediate future. </p>
<p>Good luck anyway,<br />
Peter</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/mapping-midi-velocity-to-0-to-1-range-non-linear/#post-146529</guid>
					<title><![CDATA[Re: mapping MIDI velocity to 0. to 1. range (non-linear)]]></title>
					<link>http://cycling74.com/forums/topic/mapping-midi-velocity-to-0-to-1-range-non-linear/#post-146529</link>
					<pubDate>Sat, 06 Dec 2008 15:06:40 +0000</pubDate>
					<dc:creator>Mitch Turner</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks to all for the help.<br />
Mitch</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/mapping-midi-velocity-to-0-to-1-range-non-linear/#post-146530</guid>
					<title><![CDATA[Re: mapping MIDI velocity to 0. to 1. range (non-linear)]]></title>
					<link>http://cycling74.com/forums/topic/mapping-midi-velocity-to-0-to-1-range-non-linear/#post-146530</link>
					<pubDate>Mon, 08 Dec 2008 04:32:15 +0000</pubDate>
					<dc:creator>dodgeroo</dc:creator>

					<description>
						<![CDATA[
						<p>you can create curves in a buffer</p>
<p>On Sat, Dec 6, 2008 at 4:06 PM, Mitch Turner <mmturner @mindspring.com>wrote:</mmturner></p>
<p>><br />
> Thanks to all for the help.<br />
> Mitch<br />
> &#8211;<br />
> <a href="http://home.lagrange.edu/mturner" rel="nofollow">http://home.lagrange.edu/mturner</a><br />
></p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

