<?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: Practical example: Algorithm development for making colormaps</title>
	<atom:link href="http://blogs.mathworks.com/videos/2007/11/15/practical-example-algorithm-development-for-making-colormaps/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.mathworks.com/videos/2007/11/15/practical-example-algorithm-development-for-making-colormaps/</link>
	<description>Doug Hull is a proud MathWorker who is on a mission to help you with MATLAB.</description>
	<lastBuildDate>Tue, 21 May 2013 20:13:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Doug</title>
		<link>http://blogs.mathworks.com/videos/2007/11/15/practical-example-algorithm-development-for-making-colormaps/#comment-645</link>
		<dc:creator>Doug</dc:creator>
		<pubDate>Wed, 02 Jan 2008 16:06:41 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/videos/2007/11/15/practical-example-algorithm-development-for-making-colormaps/#comment-645</guid>
		<description><![CDATA[Andy,

What was the commands you were using?  I just tried the example in CONTOURCMAP only I made a throw-away function JETT that just calls JET.  This worked fine.  Please send or post the code you used and we can figure this out.

I suspect that my colormap function expects different inputs than CONTOURCMAP gives so things are not working.  You will probably want to make a wrapper around my function that takes just a single number input (like JET and other colormap functions do) so that when CONTOURCMAP calls it it will behave like the others.

Doug]]></description>
		<content:encoded><![CDATA[<p>Andy,</p>
<p>What was the commands you were using?  I just tried the example in CONTOURCMAP only I made a throw-away function JETT that just calls JET.  This worked fine.  Please send or post the code you used and we can figure this out.</p>
<p>I suspect that my colormap function expects different inputs than CONTOURCMAP gives so things are not working.  You will probably want to make a wrapper around my function that takes just a single number input (like JET and other colormap functions do) so that when CONTOURCMAP calls it it will behave like the others.</p>
<p>Doug</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy</title>
		<link>http://blogs.mathworks.com/videos/2007/11/15/practical-example-algorithm-development-for-making-colormaps/#comment-644</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Mon, 31 Dec 2007 03:59:43 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/videos/2007/11/15/practical-example-algorithm-development-for-making-colormaps/#comment-644</guid>
		<description><![CDATA[Hi Doug - Thank you for creating the very useful makeColorMap. My goal was to integrate this function into my plots that use contourcmap.m.  However, I kept getting an error, &#039;cmap string must contain a colormap function name&#039; since contourcmap only allows built in Matlab color maps.  My way around this was to comment out lines 64-68 of contourcmap.  Do you recommend this solution, and if not, what other methods could I try?  Thanks!]]></description>
		<content:encoded><![CDATA[<p>Hi Doug &#8211; Thank you for creating the very useful makeColorMap. My goal was to integrate this function into my plots that use contourcmap.m.  However, I kept getting an error, &#8216;cmap string must contain a colormap function name&#8217; since contourcmap only allows built in Matlab color maps.  My way around this was to comment out lines 64-68 of contourcmap.  Do you recommend this solution, and if not, what other methods could I try?  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amir</title>
		<link>http://blogs.mathworks.com/videos/2007/11/15/practical-example-algorithm-development-for-making-colormaps/#comment-643</link>
		<dc:creator>Amir</dc:creator>
		<pubDate>Tue, 20 Nov 2007 06:22:02 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/videos/2007/11/15/practical-example-algorithm-development-for-making-colormaps/#comment-643</guid>
		<description><![CDATA[Dan,
Here is the solution -
http://www.mathworks.com/support/tech-notes/1200/1215.html
Amir]]></description>
		<content:encoded><![CDATA[<p>Dan,<br />
Here is the solution -<br />
<a href="http://www.mathworks.com/support/tech-notes/1200/1215.html" rel="nofollow">http://www.mathworks.com/support/tech-notes/1200/1215.html</a><br />
Amir</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doug</title>
		<link>http://blogs.mathworks.com/videos/2007/11/15/practical-example-algorithm-development-for-making-colormaps/#comment-641</link>
		<dc:creator>Doug</dc:creator>
		<pubDate>Mon, 19 Nov 2007 15:13:36 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/videos/2007/11/15/practical-example-algorithm-development-for-making-colormaps/#comment-641</guid>
		<description><![CDATA[Dan,

The colormap is a property of the Figure, so all axes in a figure share it.

Doug]]></description>
		<content:encoded><![CDATA[<p>Dan,</p>
<p>The colormap is a property of the Figure, so all axes in a figure share it.</p>
<p>Doug</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan Pace</title>
		<link>http://blogs.mathworks.com/videos/2007/11/15/practical-example-algorithm-development-for-making-colormaps/#comment-642</link>
		<dc:creator>Dan Pace</dc:creator>
		<pubDate>Mon, 19 Nov 2007 14:24:08 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/videos/2007/11/15/practical-example-algorithm-development-for-making-colormaps/#comment-642</guid>
		<description><![CDATA[Hi Doug - thanks for the helpful video.  I have a question.  Is it possible to display two surface plots, with different colormaps, on the same axes?  Thanks - Dan]]></description>
		<content:encoded><![CDATA[<p>Hi Doug &#8211; thanks for the helpful video.  I have a question.  Is it possible to display two surface plots, with different colormaps, on the same axes?  Thanks &#8211; Dan</p>
]]></content:encoded>
	</item>
</channel>
</rss>
