<?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: Video series: Reading Excel data into MATLAB with a GUI</title>
	<atom:link href="http://blogs.mathworks.com/videos/2007/08/13/video-series-reading-excel-data-into-matlab-with-a-gui/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.mathworks.com/videos/2007/08/13/video-series-reading-excel-data-into-matlab-with-a-gui/</link>
	<description>Doug Hull is a proud MathWorker who is on a mission to help you with MATLAB.</description>
	<lastBuildDate>Fri, 10 Feb 2012 20:31:50 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: dhull</title>
		<link>http://blogs.mathworks.com/videos/2007/08/13/video-series-reading-excel-data-into-matlab-with-a-gui/#comment-2189</link>
		<dc:creator>dhull</dc:creator>
		<pubDate>Tue, 20 Jul 2010 17:47:35 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/videos/2007/08/13/video-series-reading-excel-data-into-matlab-with-a-gui/#comment-2189</guid>
		<description>@aaron,

I think I must not understand you.  I think you are saying that the above code puts the same plot on two different axis.  The above code would not do that though.

Please contact tech support, www.mathworks.com/support and they can help you better.

Doug</description>
		<content:encoded><![CDATA[<p>@aaron,</p>
<p>I think I must not understand you.  I think you are saying that the above code puts the same plot on two different axis.  The above code would not do that though.</p>
<p>Please contact tech support, <a href="http://www.mathworks.com/support" rel="nofollow">http://www.mathworks.com/support</a> and they can help you better.</p>
<p>Doug</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aaron</title>
		<link>http://blogs.mathworks.com/videos/2007/08/13/video-series-reading-excel-data-into-matlab-with-a-gui/#comment-2187</link>
		<dc:creator>Aaron</dc:creator>
		<pubDate>Mon, 19 Jul 2010 20:02:58 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/videos/2007/08/13/video-series-reading-excel-data-into-matlab-with-a-gui/#comment-2187</guid>
		<description>It seems the same plot ends up on both axes.  I tried to implement a plot axes pushbutton for both axes.  This is what I have for code under the plot axes pushbutton.
function PlotAxes1_pushbutton_Callback(hObject, eventdata, handles)
% hObject    handle to PlotAxes1_pushbutton (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
fileName = handles.fileName;
axes(handles.axes1)
[x,y] = readExcelcolumns(fileName, xcolNum, ycolNum)
hold all
plot (handles.axes1, x,y)
axis ([320 400 0.760 0.900])
guidata(hObject, handles)

This plots on both axes.  When I try the next function plot axes2 pushbutton it does not seem to plot the data into axes2.  The axes1 data plots in both axes1 and axes2

I am not sure if this is the right approach.</description>
		<content:encoded><![CDATA[<p>It seems the same plot ends up on both axes.  I tried to implement a plot axes pushbutton for both axes.  This is what I have for code under the plot axes pushbutton.<br />
function PlotAxes1_pushbutton_Callback(hObject, eventdata, handles)<br />
% hObject    handle to PlotAxes1_pushbutton (see GCBO)<br />
% eventdata  reserved &#8211; to be defined in a future version of MATLAB<br />
% handles    structure with handles and user data (see GUIDATA)<br />
fileName = handles.fileName;<br />
axes(handles.axes1)<br />
[x,y] = readExcelcolumns(fileName, xcolNum, ycolNum)<br />
hold all<br />
plot (handles.axes1, x,y)<br />
axis ([320 400 0.760 0.900])<br />
guidata(hObject, handles)</p>
<p>This plots on both axes.  When I try the next function plot axes2 pushbutton it does not seem to plot the data into axes2.  The axes1 data plots in both axes1 and axes2</p>
<p>I am not sure if this is the right approach.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dhull</title>
		<link>http://blogs.mathworks.com/videos/2007/08/13/video-series-reading-excel-data-into-matlab-with-a-gui/#comment-2186</link>
		<dc:creator>dhull</dc:creator>
		<pubDate>Mon, 19 Jul 2010 18:30:08 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/videos/2007/08/13/video-series-reading-excel-data-into-matlab-with-a-gui/#comment-2186</guid>
		<description>@Aaron,

What have you tried.  Where is the stumbling point?  Adding a second axis, are both plots going to the same axis?  You should capture the handles from each axes and use them as inputs into the plotting functions.

Doug</description>
		<content:encoded><![CDATA[<p>@Aaron,</p>
<p>What have you tried.  Where is the stumbling point?  Adding a second axis, are both plots going to the same axis?  You should capture the handles from each axes and use them as inputs into the plotting functions.</p>
<p>Doug</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aaron</title>
		<link>http://blogs.mathworks.com/videos/2007/08/13/video-series-reading-excel-data-into-matlab-with-a-gui/#comment-2185</link>
		<dc:creator>Aaron</dc:creator>
		<pubDate>Mon, 19 Jul 2010 18:13:53 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/videos/2007/08/13/video-series-reading-excel-data-into-matlab-with-a-gui/#comment-2185</guid>
		<description>If I added a second axes on the GUI, how would I implement the code to plot two different graphs on the same GUI?  Both plots are coming from the data that is read into Matlab from excel, just like the tutorial shows.  I just want to be able to produce two plots in one GUI.</description>
		<content:encoded><![CDATA[<p>If I added a second axes on the GUI, how would I implement the code to plot two different graphs on the same GUI?  Both plots are coming from the data that is read into Matlab from excel, just like the tutorial shows.  I just want to be able to produce two plots in one GUI.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dhull</title>
		<link>http://blogs.mathworks.com/videos/2007/08/13/video-series-reading-excel-data-into-matlab-with-a-gui/#comment-2054</link>
		<dc:creator>dhull</dc:creator>
		<pubDate>Thu, 13 May 2010 18:08:08 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/videos/2007/08/13/video-series-reading-excel-data-into-matlab-with-a-gui/#comment-2054</guid>
		<description>@Ram,

XLSREAD can do this.

Doug</description>
		<content:encoded><![CDATA[<p>@Ram,</p>
<p>XLSREAD can do this.</p>
<p>Doug</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ram</title>
		<link>http://blogs.mathworks.com/videos/2007/08/13/video-series-reading-excel-data-into-matlab-with-a-gui/#comment-2053</link>
		<dc:creator>Ram</dc:creator>
		<pubDate>Thu, 13 May 2010 04:56:32 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/videos/2007/08/13/video-series-reading-excel-data-into-matlab-with-a-gui/#comment-2053</guid>
		<description>Hi Doug,
I am trying to open a Excel file which has multiple sheets. I can use winopen command to open any file in MATLAB. But how could open a specific work sheet? 

If anyone could answer this, it will be very helpful. I am looking for a quick win.

Thanks!</description>
		<content:encoded><![CDATA[<p>Hi Doug,<br />
I am trying to open a Excel file which has multiple sheets. I can use winopen command to open any file in MATLAB. But how could open a specific work sheet? </p>
<p>If anyone could answer this, it will be very helpful. I am looking for a quick win.</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ros</title>
		<link>http://blogs.mathworks.com/videos/2007/08/13/video-series-reading-excel-data-into-matlab-with-a-gui/#comment-1827</link>
		<dc:creator>ros</dc:creator>
		<pubDate>Thu, 04 Feb 2010 23:18:08 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/videos/2007/08/13/video-series-reading-excel-data-into-matlab-with-a-gui/#comment-1827</guid>
		<description>....and i do not know following things:
1)how to write a fig in excel using xlswrite
2)how to write data in excel using activex commands.</description>
		<content:encoded><![CDATA[<p>&#8230;.and i do not know following things:<br />
1)how to write a fig in excel using xlswrite<br />
2)how to write data in excel using activex commands.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ros</title>
		<link>http://blogs.mathworks.com/videos/2007/08/13/video-series-reading-excel-data-into-matlab-with-a-gui/#comment-1826</link>
		<dc:creator>ros</dc:creator>
		<pubDate>Thu, 04 Feb 2010 23:15:47 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/videos/2007/08/13/video-series-reading-excel-data-into-matlab-with-a-gui/#comment-1826</guid>
		<description>Thanks for your reply.

i want to use same filename. and i want to write one figure and under that some numeric data. If i write figure first using activx and then use xlswrite to write numeric data then figure is gone and only numeric data remains and vice versa.</description>
		<content:encoded><![CDATA[<p>Thanks for your reply.</p>
<p>i want to use same filename. and i want to write one figure and under that some numeric data. If i write figure first using activx and then use xlswrite to write numeric data then figure is gone and only numeric data remains and vice versa.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dhull</title>
		<link>http://blogs.mathworks.com/videos/2007/08/13/video-series-reading-excel-data-into-matlab-with-a-gui/#comment-1825</link>
		<dc:creator>dhull</dc:creator>
		<pubDate>Thu, 04 Feb 2010 15:47:01 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/videos/2007/08/13/video-series-reading-excel-data-into-matlab-with-a-gui/#comment-1825</guid>
		<description>@ros,

Are you always using the same filename for Excel?  That is why it is overwriting maybe.  If you are using the same file name, what do you want to happen?

Doug</description>
		<content:encoded><![CDATA[<p>@ros,</p>
<p>Are you always using the same filename for Excel?  That is why it is overwriting maybe.  If you are using the same file name, what do you want to happen?</p>
<p>Doug</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ros</title>
		<link>http://blogs.mathworks.com/videos/2007/08/13/video-series-reading-excel-data-into-matlab-with-a-gui/#comment-1821</link>
		<dc:creator>ros</dc:creator>
		<pubDate>Thu, 04 Feb 2010 06:45:01 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/videos/2007/08/13/video-series-reading-excel-data-into-matlab-with-a-gui/#comment-1821</guid>
		<description>Hi,
I am trying to export a &#039;figure&#039; and some Numerical data into excel. I first save&#039;figure&#039; using &#039;activx&#039; and then I write numerical data using &#039;xlswrite&#039;. but everytime matlab overwrites the existing data in excel. Is it not possible to write both figure and data with just matlab commands(without installing any other tools)? Please help.
thanks.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I am trying to export a &#8216;figure&#8217; and some Numerical data into excel. I first save&#8217;figure&#8217; using &#8216;activx&#8217; and then I write numerical data using &#8216;xlswrite&#8217;. but everytime matlab overwrites the existing data in excel. Is it not possible to write both figure and data with just matlab commands(without installing any other tools)? Please help.<br />
thanks.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

