<?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: IP address input control	</title>
	<atom:link href="https://undocumentedmatlab.com/articles/ip-address-input-control/feed" rel="self" type="application/rss+xml" />
	<link>https://undocumentedmatlab.com/articles/ip-address-input-control?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ip-address-input-control</link>
	<description>Professional Matlab consulting, development and training</description>
	<lastBuildDate>Fri, 30 Mar 2018 10:16:12 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.2</generator>
	<item>
		<title>
		By: Lokesh Sharma		</title>
		<link>https://undocumentedmatlab.com/articles/ip-address-input-control#comment-421735</link>

		<dc:creator><![CDATA[Lokesh Sharma]]></dc:creator>
		<pubDate>Fri, 30 Mar 2018 10:16:12 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=7313#comment-421735</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://undocumentedmatlab.com/articles/ip-address-input-control#comment-418985&quot;&gt;Peter Cook&lt;/a&gt;.

this is a good method...]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://undocumentedmatlab.com/articles/ip-address-input-control#comment-418985">Peter Cook</a>.</p>
<p>this is a good method&#8230;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Peter Cook		</title>
		<link>https://undocumentedmatlab.com/articles/ip-address-input-control#comment-418985</link>

		<dc:creator><![CDATA[Peter Cook]]></dc:creator>
		<pubDate>Wed, 07 Feb 2018 18:32:36 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=7313#comment-418985</guid>

					<description><![CDATA[A quick method to check if a machine is connected to a particular IP address using MATLAB, which is a potentially useful callback for a widget like this (after string verified with IPTextField):

&lt;pre lang=&quot;matlab&quot;&gt;
%check to see if user is on corporate ethernet and terminate otherwise
[~,dosReply] = dos(&#039;ping 12.34.56.78&#039;);
[~,~,noPacket] = regexp(dosReply,&#039;Received = \d&#039;,&#039;match&#039;);
noPacket = str2double(dosReply(noPacket));
if lt(noPacket,2)
    uiwait(errordlg(&#039;Must be Connected to Secure Network&#039;))
    exit
end
&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>A quick method to check if a machine is connected to a particular IP address using MATLAB, which is a potentially useful callback for a widget like this (after string verified with IPTextField):</p>
<pre lang="matlab">
%check to see if user is on corporate ethernet and terminate otherwise
[~,dosReply] = dos('ping 12.34.56.78');
[~,~,noPacket] = regexp(dosReply,'Received = \d','match');
noPacket = str2double(dosReply(noPacket));
if lt(noPacket,2)
    uiwait(errordlg('Must be Connected to Secure Network'))
    exit
end
</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Hanan Kavitz		</title>
		<link>https://undocumentedmatlab.com/articles/ip-address-input-control#comment-418898</link>

		<dc:creator><![CDATA[Hanan Kavitz]]></dc:creator>
		<pubDate>Sun, 04 Feb 2018 08:26:32 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=7313#comment-418898</guid>

					<description><![CDATA[Thanks Yair,
Changed one of my edit boxes that are IP address input to use IPTextField
:)]]></description>
			<content:encoded><![CDATA[<p>Thanks Yair,<br />
Changed one of my edit boxes that are IP address input to use IPTextField<br />
🙂</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
