<?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: Undocumented view transformation matrix	</title>
	<atom:link href="https://undocumentedmatlab.com/articles/undocumented-view-transformation-matrix/feed" rel="self" type="application/rss+xml" />
	<link>https://undocumentedmatlab.com/articles/undocumented-view-transformation-matrix?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=undocumented-view-transformation-matrix</link>
	<description>Professional Matlab consulting, development and training</description>
	<lastBuildDate>Tue, 12 May 2015 12:00:01 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.3</generator>
	<item>
		<title>
		By: Yair Altman		</title>
		<link>https://undocumentedmatlab.com/articles/undocumented-view-transformation-matrix#comment-349188</link>

		<dc:creator><![CDATA[Yair Altman]]></dc:creator>
		<pubDate>Tue, 12 May 2015 12:00:01 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=5711#comment-349188</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://undocumentedmatlab.com/articles/undocumented-view-transformation-matrix#comment-349187&quot;&gt;Yaroslav&lt;/a&gt;.

cute :-)]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://undocumentedmatlab.com/articles/undocumented-view-transformation-matrix#comment-349187">Yaroslav</a>.</p>
<p>cute 🙂</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Yaroslav		</title>
		<link>https://undocumentedmatlab.com/articles/undocumented-view-transformation-matrix#comment-349187</link>

		<dc:creator><![CDATA[Yaroslav]]></dc:creator>
		<pubDate>Tue, 12 May 2015 11:34:01 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=5711#comment-349187</guid>

					<description><![CDATA[There is another semi-documented feature of the view: you can link the &lt;code&gt;View&lt;/code&gt; property across multiple axes. For example,

&lt;pre lang=&quot;matlab&quot;&gt;
figure(&#039;Units&#039;,&#039;normalized&#039;,&#039;OuterPosition&#039;,[.10 .10 .80 .80])
%
hAxis(1) = subplot(1,2,1); 
surf(peaks(31));
axis tight;
%
hAxis(2) = subplot(1,2,2);
surf(membrane(1,15));
axis tight;
%
linkprop(hAxis,&#039;View&#039;); % link the view
view([-54 26])
&lt;/pre&gt;

Now, just press the &quot;Rotate 3D&quot; toolbar button, and have both axes rotating together.]]></description>
			<content:encoded><![CDATA[<p>There is another semi-documented feature of the view: you can link the <code>View</code> property across multiple axes. For example,</p>
<pre lang="matlab">
figure('Units','normalized','OuterPosition',[.10 .10 .80 .80])
%
hAxis(1) = subplot(1,2,1); 
surf(peaks(31));
axis tight;
%
hAxis(2) = subplot(1,2,2);
surf(membrane(1,15));
axis tight;
%
linkprop(hAxis,'View'); % link the view
view([-54 26])
</pre>
<p>Now, just press the &#8220;Rotate 3D&#8221; toolbar button, and have both axes rotating together.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Michelle Hirsch		</title>
		<link>https://undocumentedmatlab.com/articles/undocumented-view-transformation-matrix#comment-348547</link>

		<dc:creator><![CDATA[Michelle Hirsch]]></dc:creator>
		<pubDate>Mon, 27 Apr 2015 17:14:41 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=5711#comment-348547</guid>

					<description><![CDATA[Yair -

Thanks for taking the time to point out these inconsistencies in the behavior and documentation. We will clean up the documentation to make things more consistent. We agree that the current state of the view transformation is a bit of a mess. We are keeping it around for compatibility, and are considering your suggestion that we should provide a documented, reliable, and consistent way to work with view transformation matrices.]]></description>
			<content:encoded><![CDATA[<p>Yair &#8211;</p>
<p>Thanks for taking the time to point out these inconsistencies in the behavior and documentation. We will clean up the documentation to make things more consistent. We agree that the current state of the view transformation is a bit of a mess. We are keeping it around for compatibility, and are considering your suggestion that we should provide a documented, reliable, and consistent way to work with view transformation matrices.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Yair Altman		</title>
		<link>https://undocumentedmatlab.com/articles/undocumented-view-transformation-matrix#comment-348544</link>

		<dc:creator><![CDATA[Yair Altman]]></dc:creator>
		<pubDate>Mon, 27 Apr 2015 16:29:52 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=5711#comment-348544</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://undocumentedmatlab.com/articles/undocumented-view-transformation-matrix#comment-348541&quot;&gt;Eric&lt;/a&gt;.

@Eric - these functions are related to the article in the sense that they also deal with a 4x4 affine transformation matrix. They can be used in cases when you know in advance the requested rotation/scaling/translation amounts. My article dealt with the undocumented feature of extracting the current matrix from the axes, and af far as I can tell this is not supported by &lt;i&gt;&lt;b&gt;makehgtform&lt;/b&gt;&lt;/i&gt; and &lt;i&gt;&lt;b&gt;hgtransform&lt;/b&gt;&lt;/i&gt;.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://undocumentedmatlab.com/articles/undocumented-view-transformation-matrix#comment-348541">Eric</a>.</p>
<p>@Eric &#8211; these functions are related to the article in the sense that they also deal with a 4&#215;4 affine transformation matrix. They can be used in cases when you know in advance the requested rotation/scaling/translation amounts. My article dealt with the undocumented feature of extracting the current matrix from the axes, and af far as I can tell this is not supported by <i><b>makehgtform</b></i> and <i><b>hgtransform</b></i>.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Eric		</title>
		<link>https://undocumentedmatlab.com/articles/undocumented-view-transformation-matrix#comment-348541</link>

		<dc:creator><![CDATA[Eric]]></dc:creator>
		<pubDate>Mon, 27 Apr 2015 15:49:50 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=5711#comment-348541</guid>

					<description><![CDATA[Hi Yair, I haven&#039;t had enough coffee yet on this Monday morning to follow this post entirely, but is makehgtform/hgtransform helpful?]]></description>
			<content:encoded><![CDATA[<p>Hi Yair, I haven&#8217;t had enough coffee yet on this Monday morning to follow this post entirely, but is makehgtform/hgtransform helpful?</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
