<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Arduino to Matlab &#8211; Read in sensor data!</title>
	<atom:link href="http://robotgrrl.com/blog/2010/01/15/arduino-to-matlab-read-in-sensor-data/feed/" rel="self" type="application/rss+xml" />
	<link>http://robotgrrl.com/blog/2010/01/15/arduino-to-matlab-read-in-sensor-data/</link>
	<description>ethical robots that bring smiles</description>
	<lastBuildDate>Thu, 09 Feb 2012 01:04:02 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
	<item>
		<title>By: fremond</title>
		<link>http://robotgrrl.com/blog/2010/01/15/arduino-to-matlab-read-in-sensor-data/comment-page-1/#comment-33677</link>
		<dc:creator>fremond</dc:creator>
		<pubDate>Sun, 03 Apr 2011 05:51:30 +0000</pubDate>
		<guid isPermaLink="false">http://robotgrrl.com/blog/?p=1483#comment-33677</guid>
		<description>can someone teach me how to program the arduino to receive data from two potentiometer and plot them using matlab??</description>
		<content:encoded><![CDATA[<p>can someone teach me how to program the arduino to receive data from two potentiometer and plot them using matlab??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fremond</title>
		<link>http://robotgrrl.com/blog/2010/01/15/arduino-to-matlab-read-in-sensor-data/comment-page-1/#comment-33530</link>
		<dc:creator>fremond</dc:creator>
		<pubDate>Sat, 02 Apr 2011 05:40:27 +0000</pubDate>
		<guid isPermaLink="false">http://robotgrrl.com/blog/?p=1483#comment-33530</guid>
		<description>hi..thanks for the source code..

can i ask is there any permanent solution that we do not need to close off matlab everytime after we obtain the sensor data from arduino to matlab?</description>
		<content:encoded><![CDATA[<p>hi..thanks for the source code..</p>
<p>can i ask is there any permanent solution that we do not need to close off matlab everytime after we obtain the sensor data from arduino to matlab?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Erin, the RobotGrrl</title>
		<link>http://robotgrrl.com/blog/2010/01/15/arduino-to-matlab-read-in-sensor-data/comment-page-1/#comment-32259</link>
		<dc:creator>Erin, the RobotGrrl</dc:creator>
		<pubDate>Wed, 23 Mar 2011 22:23:11 +0000</pubDate>
		<guid isPermaLink="false">http://robotgrrl.com/blog/?p=1483#comment-32259</guid>
		<description>Thanks Dustyn! I think my friend got the serial port to be able to close by declaring the port as a global variable (in that big window in the middle when you start MATLAB), and using that variable name throughout the code. :D It was a weird solution though, and only worked sometimes.

I did indeed see that, but I wrote the above code before the Arduino toolkit came out hahaha ;D

Thanks for the comment, Giampy! :)</description>
		<content:encoded><![CDATA[<p>Thanks Dustyn! I think my friend got the serial port to be able to close by declaring the port as a global variable (in that big window in the middle when you start MATLAB), and using that variable name throughout the code. <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  It was a weird solution though, and only worked sometimes.</p>
<p>I did indeed see that, but I wrote the above code before the Arduino toolkit came out hahaha ;D</p>
<p>Thanks for the comment, Giampy! <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Giampy</title>
		<link>http://robotgrrl.com/blog/2010/01/15/arduino-to-matlab-read-in-sensor-data/comment-page-1/#comment-32258</link>
		<dc:creator>Giampy</dc:creator>
		<pubDate>Wed, 23 Mar 2011 22:13:15 +0000</pubDate>
		<guid isPermaLink="false">http://robotgrrl.com/blog/?p=1483#comment-32258</guid>
		<description>By the way, there is a free Matlab interface to Arduino, which you can download from here:

http://www.mathworks.com/academia/arduino-software/arduino-matlab.html 

This lets you control your Arduino board over USB from a MATLAB session, in either Windows, Mac or Linux. For example you can instantiate an Arduino object from MATLAB using: 

&gt;&gt; a=arduino(&#039;COM5&#039;); 

and then do stuff like: 

&gt;&gt; av=a.analogRead(5); 
&gt;&gt; a.pinMode(13,&#039;output&#039;);
&gt;&gt; a.digitalWrite(13,1); 
&gt;&gt; delete(a)</description>
		<content:encoded><![CDATA[<p>By the way, there is a free Matlab interface to Arduino, which you can download from here:</p>
<p><a href="http://www.mathworks.com/academia/arduino-software/arduino-matlab.html" rel="nofollow">http://www.mathworks.com/academia/arduino-software/arduino-matlab.html</a> </p>
<p>This lets you control your Arduino board over USB from a MATLAB session, in either Windows, Mac or Linux. For example you can instantiate an Arduino object from MATLAB using: </p>
<p>&gt;&gt; a=arduino(&#8216;COM5&#8242;); </p>
<p>and then do stuff like: </p>
<p>&gt;&gt; av=a.analogRead(5);<br />
&gt;&gt; a.pinMode(13,&#8217;output&#8217;);<br />
&gt;&gt; a.digitalWrite(13,1);<br />
&gt;&gt; delete(a)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dustyn Roberts</title>
		<link>http://robotgrrl.com/blog/2010/01/15/arduino-to-matlab-read-in-sensor-data/comment-page-1/#comment-32256</link>
		<dc:creator>Dustyn Roberts</dc:creator>
		<pubDate>Wed, 23 Mar 2011 21:46:12 +0000</pubDate>
		<guid isPermaLink="false">http://robotgrrl.com/blog/?p=1483#comment-32256</guid>
		<description>Thanks for that!  Now if I can only figure out a way to close the serial port without turning off Matlab...

Also have you seen this? 
http://www.mathworks.com/matlabcentral/fileexchange/27843

Have you ever tried 2-way communication, like controlling a motor while logging sensor data in Matlab?</description>
		<content:encoded><![CDATA[<p>Thanks for that!  Now if I can only figure out a way to close the serial port without turning off Matlab&#8230;</p>
<p>Also have you seen this?<br />
<a href="http://www.mathworks.com/matlabcentral/fileexchange/27843" rel="nofollow">http://www.mathworks.com/matlabcentral/fileexchange/27843</a></p>
<p>Have you ever tried 2-way communication, like controlling a motor while logging sensor data in Matlab?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fremond</title>
		<link>http://robotgrrl.com/blog/2010/01/15/arduino-to-matlab-read-in-sensor-data/comment-page-1/#comment-31704</link>
		<dc:creator>fremond</dc:creator>
		<pubDate>Fri, 18 Mar 2011 15:43:20 +0000</pubDate>
		<guid isPermaLink="false">http://robotgrrl.com/blog/?p=1483#comment-31704</guid>
		<description>hello erin,

i wish to ask how something..since i have connected my potentiometer to arduino board..does the code you share here can read the data from the potentiometer and plot graph?</description>
		<content:encoded><![CDATA[<p>hello erin,</p>
<p>i wish to ask how something..since i have connected my potentiometer to arduino board..does the code you share here can read the data from the potentiometer and plot graph?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fremond</title>
		<link>http://robotgrrl.com/blog/2010/01/15/arduino-to-matlab-read-in-sensor-data/comment-page-1/#comment-31128</link>
		<dc:creator>fremond</dc:creator>
		<pubDate>Mon, 14 Mar 2011 14:28:56 +0000</pubDate>
		<guid isPermaLink="false">http://robotgrrl.com/blog/?p=1483#comment-31128</guid>
		<description>hello Erin, 

you are a lifesaver..i am so glad i found this website..i got a few things that i wish you can help me with..

1st) while i executed the matlab code this error came out:

??? Undefined function or method &#039;training&#039; for input
arguments of type &#039;char&#039;.

may i ask for your help to enlighten me?

i am really a newbie in matlab and also arduino..hope that someone can help me..</description>
		<content:encoded><![CDATA[<p>hello Erin, </p>
<p>you are a lifesaver..i am so glad i found this website..i got a few things that i wish you can help me with..</p>
<p>1st) while i executed the matlab code this error came out:</p>
<p>??? Undefined function or method &#8216;training&#8217; for input<br />
arguments of type &#8216;char&#8217;.</p>
<p>may i ask for your help to enlighten me?</p>
<p>i am really a newbie in matlab and also arduino..hope that someone can help me..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nuclearrambo</title>
		<link>http://robotgrrl.com/blog/2010/01/15/arduino-to-matlab-read-in-sensor-data/comment-page-1/#comment-20292</link>
		<dc:creator>Nuclearrambo</dc:creator>
		<pubDate>Fri, 17 Dec 2010 06:10:24 +0000</pubDate>
		<guid isPermaLink="false">http://robotgrrl.com/blog/?p=1483#comment-20292</guid>
		<description>EXCELLENT ....you came to my rescue while i am building my pulse oximeter :D

Thank you very much.</description>
		<content:encoded><![CDATA[<p>EXCELLENT &#8230;.you came to my rescue while i am building my pulse oximeter <img src='http://robotgrrl.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Thank you very much.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wwn</title>
		<link>http://robotgrrl.com/blog/2010/01/15/arduino-to-matlab-read-in-sensor-data/comment-page-1/#comment-19693</link>
		<dc:creator>wwn</dc:creator>
		<pubDate>Mon, 13 Dec 2010 03:43:32 +0000</pubDate>
		<guid isPermaLink="false">http://robotgrrl.com/blog/?p=1483#comment-19693</guid>
		<description>ihad error like this ??? Error: File: Serial.m Line: 45 Column: 1
Illegal use of reserved keyword &quot;catch&quot;.??? Error: File: Serial.m Line: 45 Column: 1
Illegal use of reserved keyword &quot;catch&quot;.
can anyone help me?</description>
		<content:encoded><![CDATA[<p>ihad error like this ??? Error: File: Serial.m Line: 45 Column: 1<br />
Illegal use of reserved keyword &#8220;catch&#8221;.??? Error: File: Serial.m Line: 45 Column: 1<br />
Illegal use of reserved keyword &#8220;catch&#8221;.<br />
can anyone help me?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SAMMOR</title>
		<link>http://robotgrrl.com/blog/2010/01/15/arduino-to-matlab-read-in-sensor-data/comment-page-1/#comment-12918</link>
		<dc:creator>SAMMOR</dc:creator>
		<pubDate>Tue, 05 Oct 2010 07:46:30 +0000</pubDate>
		<guid isPermaLink="false">http://robotgrrl.com/blog/?p=1483#comment-12918</guid>
		<description>Hey Erin,
Thank you for the code. Exactly what i need to build my signature verification project. Arduino to matlab communication
I&#039;ll let you know of my progress.
Sam</description>
		<content:encoded><![CDATA[<p>Hey Erin,<br />
Thank you for the code. Exactly what i need to build my signature verification project. Arduino to matlab communication<br />
I&#8217;ll let you know of my progress.<br />
Sam</p>
]]></content:encoded>
	</item>
</channel>
</rss>

