<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: Intruder Alert!</title>
	<link>http://blogs.mathworks.com/pick/2008/10/03/intruder-alert/</link>
	<description>&#60;a href="http://www.mathworks.com/matlabcentral/fileexchange/loadAuthor.do?objectId=969735&#38;objectType=author"&#62;Bob&#60;/a&#62;, &#60;a href="http://www.mathworks.com/matlabcentral/fileexchange/loadAuthor.do?objectId=1093599&#38;objectType=author"&#62;Brett&#60;/a&#62; &#38; &#60;a href="http://www.mathworks.com/matlabcentral/fileexchange/loadAuthor.do?objectId=1094142&#38;objectType=author"&#62;Jiro&#60;/a&#62; share favorite user-contributed submissions from the File Exchange.</description>
	<pubDate>Sun, 22 Nov 2009 23:13:07 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
		<item>
		<title>By: jiro</title>
		<link>http://blogs.mathworks.com/pick/2008/10/03/intruder-alert/#comment-12991</link>
		<dc:creator>jiro</dc:creator>
		<pubDate>Sat, 17 Jan 2009 03:10:05 +0000</pubDate>
		<guid>http://blogs.mathworks.com/pick/2008/10/03/intruder-alert/#comment-12991</guid>
		<description>Girish,

You should be able to do it with R2006a. As you can see from this File Exchange entry

http://www.mathworks.com/matlabcentral/fileexchange/15272

it says it requires Data Acquisition and Image Acquisition Toolbox.</description>
		<content:encoded><![CDATA[<p>Girish,</p>
<p>You should be able to do it with R2006a. As you can see from this File Exchange entry</p>
<p><a href="http://www.mathworks.com/matlabcentral/fileexchange/15272" rel="nofollow">http://www.mathworks.com/matlabcentral/fileexchange/15272</a></p>
<p>it says it requires Data Acquisition and Image Acquisition Toolbox.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Girish</title>
		<link>http://blogs.mathworks.com/pick/2008/10/03/intruder-alert/#comment-12990</link>
		<dc:creator>Girish</dc:creator>
		<pubDate>Sat, 17 Jan 2009 01:40:12 +0000</pubDate>
		<guid>http://blogs.mathworks.com/pick/2008/10/03/intruder-alert/#comment-12990</guid>
		<description>Hi,
I am using R2006a version.Is it possible to do motion and nosie detection in my laptop? what else i reqired for motion ad noise detection?

Thank You,
Girish</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I am using R2006a version.Is it possible to do motion and nosie detection in my laptop? what else i reqired for motion ad noise detection?</p>
<p>Thank You,<br />
Girish</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Quan Quach</title>
		<link>http://blogs.mathworks.com/pick/2008/10/03/intruder-alert/#comment-12895</link>
		<dc:creator>Quan Quach</dc:creator>
		<pubDate>Tue, 07 Oct 2008 23:12:13 +0000</pubDate>
		<guid>http://blogs.mathworks.com/pick/2008/10/03/intruder-alert/#comment-12895</guid>
		<description>Hey, that is a pretty nifty use of MATLAB!  I'm going to make an alarm system for my house.</description>
		<content:encoded><![CDATA[<p>Hey, that is a pretty nifty use of MATLAB!  I&#8217;m going to make an alarm system for my house.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jiro</title>
		<link>http://blogs.mathworks.com/pick/2008/10/03/intruder-alert/#comment-12889</link>
		<dc:creator>jiro</dc:creator>
		<pubDate>Sat, 04 Oct 2008 15:16:56 +0000</pubDate>
		<guid>http://blogs.mathworks.com/pick/2008/10/03/intruder-alert/#comment-12889</guid>
		<description>Mahmood,

It's probably best to ask the author of the tool for specific questions regarding the application.


But here's some advice for debugging m-files. Notice the error message you are getting. It's basically saying that there's an error in line 175 with the "wavread" function. Type "help wavread" to make sure that the syntax is valid. In this particular case, it's possible that you are using an older version of MATLAB, which may not support the particular syntax. You may be able to just remove the 'double' argument and make it work. Give that a try.</description>
		<content:encoded><![CDATA[<p>Mahmood,</p>
<p>It&#8217;s probably best to ask the author of the tool for specific questions regarding the application.</p>
<p>But here&#8217;s some advice for debugging m-files. Notice the error message you are getting. It&#8217;s basically saying that there&#8217;s an error in line 175 with the &#8220;wavread&#8221; function. Type &#8220;help wavread&#8221; to make sure that the syntax is valid. In this particular case, it&#8217;s possible that you are using an older version of MATLAB, which may not support the particular syntax. You may be able to just remove the &#8216;double&#8217; argument and make it work. Give that a try.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mahmood</title>
		<link>http://blogs.mathworks.com/pick/2008/10/03/intruder-alert/#comment-12888</link>
		<dc:creator>Mahmood</dc:creator>
		<pubDate>Sat, 04 Oct 2008 00:09:45 +0000</pubDate>
		<guid>http://blogs.mathworks.com/pick/2008/10/03/intruder-alert/#comment-12888</guid>
		<description>Hi there,
when I run this program application, it gives me the following error

??? Error using ==&#62; wavread
Index range must be specified as a scalar or 2-element vector.
Error in ==&#62; intruderdetection&#62;customAlarmData at 175
        [data, frequency, nbits] = wavread('alarm.wav','double');
Error in ==&#62; intruderdetection at 140
[alarmData, frequency, nbits] = customAlarmData();

Can you please help me out fixing the problem
Thanks,
Mahmood</description>
		<content:encoded><![CDATA[<p>Hi there,<br />
when I run this program application, it gives me the following error</p>
<p>??? Error using ==&gt; wavread<br />
Index range must be specified as a scalar or 2-element vector.<br />
Error in ==&gt; intruderdetection&gt;customAlarmData at 175<br />
        [data, frequency, nbits] = wavread(&#8217;alarm.wav&#8217;,'double&#8217;);<br />
Error in ==&gt; intruderdetection at 140<br />
[alarmData, frequency, nbits] = customAlarmData();</p>
<p>Can you please help me out fixing the problem<br />
Thanks,<br />
Mahmood</p>
]]></content:encoded>
	</item>
</channel>
</rss>
