<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Matlab Tutorials &#187; matlab</title>
	<atom:link href="http://www.matlabtutorials.com/howto/matlab/feed" rel="self" type="application/rss+xml" />
	<link>http://www.matlabtutorials.com</link>
	<description>Matlab tutorials and examples</description>
	<lastBuildDate>Mon, 10 May 2010 10:55:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>The find Function</title>
		<link>http://www.matlabtutorials.com/functions/the-find-function.html</link>
		<comments>http://www.matlabtutorials.com/functions/the-find-function.html#comments</comments>
		<pubDate>Sat, 08 May 2010 23:52:07 +0000</pubDate>
		<dc:creator>matlabtutorials</dc:creator>
				<category><![CDATA[Functions]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[matlab]]></category>
		<category><![CDATA[matrix]]></category>
		<category><![CDATA[transpose]]></category>
		<category><![CDATA[vector]]></category>

		<guid isPermaLink="false">http://www.matlabtutorials.com/?p=525</guid>
		<description><![CDATA[<p>The find function determines the indices of array elements that meet a given logical<br />
condition. In its simplest form, find returns a column vector of indices. Transpose that<br />
vector to obtain a row vector of indices. For example, <a href='http://www.matlabtutorials.com/functions/the-find-function.html' rel="nofollow">Read More</a></p>Matlab Tags: array, find, function, matlab, matrix, transpose, vector]]></description>
		<wfw:commentRss>http://www.matlabtutorials.com/functions/the-find-function.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linear Algebra</title>
		<link>http://www.matlabtutorials.com/controls/linear-algebra.html</link>
		<comments>http://www.matlabtutorials.com/controls/linear-algebra.html#comments</comments>
		<pubDate>Sat, 08 May 2010 19:23:52 +0000</pubDate>
		<dc:creator>matlabtutorials</dc:creator>
				<category><![CDATA[Controls]]></category>
		<category><![CDATA[Dürer's]]></category>
		<category><![CDATA[Dürer's magic square]]></category>
		<category><![CDATA[Linear Algebra]]></category>
		<category><![CDATA[magic]]></category>
		<category><![CDATA[magic squares]]></category>
		<category><![CDATA[matlab]]></category>
		<category><![CDATA[matrix]]></category>

		<guid isPermaLink="false">http://www.matlabtutorials.com/?p=522</guid>
		<description><![CDATA[<p>Informally, the terms matrix and array are often used interchangeably. More precisely, a<br />
matrix is a two-dimensional numeric array that represents a linear transformation. The<br />
mathematical operations defined on matrices are the subject of linear algebra. <a href='http://www.matlabtutorials.com/controls/linear-algebra.html' rel="nofollow">Read More</a></p>Matlab Tags: Dürer&#039;s, Dürer&#039;s magic square, Linear Algebra, magic, magic squares, matlab, matrix]]></description>
		<wfw:commentRss>http://www.matlabtutorials.com/controls/linear-algebra.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Working with 8-Bit and 16-Bit Images</title>
		<link>http://www.matlabtutorials.com/documents/working-with-8-bit-and-16-bit-images.html</link>
		<comments>http://www.matlabtutorials.com/documents/working-with-8-bit-and-16-bit-images.html#comments</comments>
		<pubDate>Sat, 08 May 2010 14:07:04 +0000</pubDate>
		<dc:creator>matlabtutorials</dc:creator>
				<category><![CDATA[Documents]]></category>
		<category><![CDATA[16-Bit]]></category>
		<category><![CDATA[8-Bit]]></category>
		<category><![CDATA[Arithmetic Operations on Integer Classes]]></category>
		<category><![CDATA[brighten]]></category>
		<category><![CDATA[cat]]></category>
		<category><![CDATA[colormap]]></category>
		<category><![CDATA[conv2]]></category>
		<category><![CDATA[convn]]></category>
		<category><![CDATA[double]]></category>
		<category><![CDATA[fft2]]></category>
		<category><![CDATA[fftn]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[imagesc]]></category>
		<category><![CDATA[imread]]></category>
		<category><![CDATA[imwrite]]></category>
		<category><![CDATA[matlab]]></category>
		<category><![CDATA[permute]]></category>
		<category><![CDATA[reshape]]></category>
		<category><![CDATA[sum]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://www.matlabtutorials.com/?p=507</guid>
		<description><![CDATA[<h3>8-Bit and 16-Bit Indexed Images</h3>
<p>Double-precision (64-bit) floating-point numbers are the default MATLAB representation for numeric data. However, to reduce memory requirements for working with images, you can store images as 8-bit or 16-bit unsigned integers using the numeric classes uint8 or uint16, respectively. An image whose data matrix has class uint8 is called an 8-bit image; an image whose data matrix has class uint16 is called a 16-bit image. <a href='http://www.matlabtutorials.com/documents/working-with-8-bit-and-16-bit-images.html' rel="nofollow">Read More</a></p>Matlab Tags: 16-Bit, 8-Bit, Arithmetic Operations on Integer Classes, brighten, cat, colormap, conv2, convn, double, fft2, fftn, find, image, imagesc, imread, imwrite, matlab, permute, reshape, sum, tutorials]]></description>
		<wfw:commentRss>http://www.matlabtutorials.com/documents/working-with-8-bit-and-16-bit-images.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The magic Function</title>
		<link>http://www.matlabtutorials.com/functions/the-magic-function.html</link>
		<comments>http://www.matlabtutorials.com/functions/the-magic-function.html#comments</comments>
		<pubDate>Sat, 08 May 2010 03:21:25 +0000</pubDate>
		<dc:creator>matlabtutorials</dc:creator>
				<category><![CDATA[Functions]]></category>
		<category><![CDATA[Colon Operator]]></category>
		<category><![CDATA[Dürer's]]></category>
		<category><![CDATA[Expressions]]></category>
		<category><![CDATA[magic]]></category>
		<category><![CDATA[matlab]]></category>
		<category><![CDATA[order]]></category>

		<guid isPermaLink="false">http://www.matlabtutorials.com/?p=518</guid>
		<description><![CDATA[<p>MATLAB actually has a built-in function that creates magic squares of almost any size.<br />
Not surprisingly, this function is named magic. <a href='http://www.matlabtutorials.com/functions/the-magic-function.html' rel="nofollow">Read More</a></p>Matlab Tags: Colon Operator, Dürer&#039;s, Expressions, magic, matlab, order]]></description>
		<wfw:commentRss>http://www.matlabtutorials.com/functions/the-magic-function.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Matlab Image Types</title>
		<link>http://www.matlabtutorials.com/documents/matlab-image-types.html</link>
		<comments>http://www.matlabtutorials.com/documents/matlab-image-types.html#comments</comments>
		<pubDate>Fri, 07 May 2010 09:02:54 +0000</pubDate>
		<dc:creator>matlabtutorials</dc:creator>
				<category><![CDATA[Documents]]></category>
		<category><![CDATA[CDataMapping]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[imagesc]]></category>
		<category><![CDATA[matlab]]></category>
		<category><![CDATA[Support]]></category>
		<category><![CDATA[Technical Note 1201: The Technical Support Guide to Graphics Rendering and Troubleshooting]]></category>

		<guid isPermaLink="false">http://www.matlabtutorials.com/?p=501</guid>
		<description><![CDATA[<h3>Indexed Images</h3>
<p>An indexed image consists of a data matrix, X, and a colormap matrix, map. map is an m-by-3 array of class double containing floating-point values in the range [0, 1]. Each row of map specifies the red, green, and blue components of a single color. An indexed image uses &#8220;direct mapping&#8221; of pixel values to colormap values. The color of each image pixel is determined by using the corresponding value of X as an index into map. Values of X therefore must be integers. The value 1 points to the first row in map, the value 2 points to the second row, and so on. Display an indexed image with the statements <a href='http://www.matlabtutorials.com/documents/matlab-image-types.html' rel="nofollow">Read More</a></p>Matlab Tags: CDataMapping, Graphics, image, imagesc, matlab, Support, Technical Note 1201: The Technical Support Guide to Graphics Rendering and Troubleshooting]]></description>
		<wfw:commentRss>http://www.matlabtutorials.com/documents/matlab-image-types.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Colon Operator</title>
		<link>http://www.matlabtutorials.com/controls/the-colon-operator.html</link>
		<comments>http://www.matlabtutorials.com/controls/the-colon-operator.html#comments</comments>
		<pubDate>Fri, 07 May 2010 01:18:33 +0000</pubDate>
		<dc:creator>matlabtutorials</dc:creator>
				<category><![CDATA[Controls]]></category>
		<category><![CDATA[Colon Operator]]></category>
		<category><![CDATA[matlab]]></category>
		<category><![CDATA[operator]]></category>
		<category><![CDATA[Subscripts]]></category>
		<category><![CDATA[The magic Function]]></category>

		<guid isPermaLink="false">http://www.matlabtutorials.com/?p=515</guid>
		<description><![CDATA[<p>The colon, :, is one of MATLAB&#8217;s most important operators. It occurs in several different<br />
forms. The expression <a href='http://www.matlabtutorials.com/controls/the-colon-operator.html' rel="nofollow">Read More</a></p>Matlab Tags: Colon Operator, matlab, operator, Subscripts, The magic Function]]></description>
		<wfw:commentRss>http://www.matlabtutorials.com/controls/the-colon-operator.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Working with Images in MATLAB Graphics</title>
		<link>http://www.matlabtutorials.com/documents/working-with-images-in-matlab-graphics.html</link>
		<comments>http://www.matlabtutorials.com/documents/working-with-images-in-matlab-graphics.html#comments</comments>
		<pubDate>Thu, 06 May 2010 23:02:30 +0000</pubDate>
		<dc:creator>matlabtutorials</dc:creator>
				<category><![CDATA[Documents]]></category>
		<category><![CDATA[axis]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[Images]]></category>
		<category><![CDATA[imagesc]]></category>
		<category><![CDATA[imfinfo]]></category>
		<category><![CDATA[imread]]></category>
		<category><![CDATA[imwrite]]></category>
		<category><![CDATA[ind2rgb]]></category>
		<category><![CDATA[matlab]]></category>
		<category><![CDATA[Working with 8-Bit and 16-Bit Images]]></category>

		<guid isPermaLink="false">http://www.matlabtutorials.com/?p=499</guid>
		<description><![CDATA[<h3>What Is Image Data?</h3>
<p>The basic MATLAB data structure is the array, an ordered set of real or complex elements. An array is naturally suited to the representation of images, real-valued, ordered sets of color or intensity data. (An array is suited for complex-valued images.) <a href='http://www.matlabtutorials.com/documents/working-with-images-in-matlab-graphics.html' rel="nofollow">Read More</a></p>Matlab Tags: axis, Graphics, image, Images, imagesc, imfinfo, imread, imwrite, ind2rgb, matlab, Working with 8-Bit and 16-Bit Images]]></description>
		<wfw:commentRss>http://www.matlabtutorials.com/documents/working-with-images-in-matlab-graphics.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stream Line Plots of Vector Data</title>
		<link>http://www.matlabtutorials.com/examples/stream-line-plots-of-vector-data.html</link>
		<comments>http://www.matlabtutorials.com/examples/stream-line-plots-of-vector-data.html#comments</comments>
		<pubDate>Sun, 02 May 2010 19:41:48 +0000</pubDate>
		<dc:creator>matlabtutorials</dc:creator>
				<category><![CDATA[Examples]]></category>
		<category><![CDATA[axis]]></category>
		<category><![CDATA[Color]]></category>
		<category><![CDATA[coneplot]]></category>
		<category><![CDATA[contourslice]]></category>
		<category><![CDATA[daspect]]></category>
		<category><![CDATA[EdgeColor]]></category>
		<category><![CDATA[FaceColor]]></category>
		<category><![CDATA[LineWidth]]></category>
		<category><![CDATA[load]]></category>
		<category><![CDATA[matlab]]></category>
		<category><![CDATA[max]]></category>
		<category><![CDATA[meshgrid]]></category>
		<category><![CDATA[min]]></category>
		<category><![CDATA[plot]]></category>
		<category><![CDATA[slice]]></category>
		<category><![CDATA[sqrt]]></category>
		<category><![CDATA[streamline]]></category>
		<category><![CDATA[view]]></category>

		<guid isPermaLink="false">http://www.matlabtutorials.com/?p=492</guid>
		<description><![CDATA[<h3>Wind Mapping Data</h3>
<p>The MATLAB vector data set called wind represents air currents over North America. This example uses a combination of techniques: <a href='http://www.matlabtutorials.com/examples/stream-line-plots-of-vector-data.html' rel="nofollow">Read More</a></p>Matlab Tags: axis, Color, coneplot, contourslice, daspect, EdgeColor, FaceColor, LineWidth, load, matlab, max, meshgrid, min, plot, slice, sqrt, streamline, view]]></description>
		<wfw:commentRss>http://www.matlabtutorials.com/examples/stream-line-plots-of-vector-data.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Displaying Curl with Stream Ribbons</title>
		<link>http://www.matlabtutorials.com/examples/displaying-curl-with-stream-ribbons.html</link>
		<comments>http://www.matlabtutorials.com/examples/displaying-curl-with-stream-ribbons.html#comments</comments>
		<pubDate>Sun, 02 May 2010 18:37:59 +0000</pubDate>
		<dc:creator>matlabtutorials</dc:creator>
				<category><![CDATA[Examples]]></category>
		<category><![CDATA[3-D]]></category>
		<category><![CDATA[AmbientStrength]]></category>
		<category><![CDATA[axis]]></category>
		<category><![CDATA[camlight]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[EdgeColor]]></category>
		<category><![CDATA[grid]]></category>
		<category><![CDATA[lighting]]></category>
		<category><![CDATA[matlab]]></category>
		<category><![CDATA[meshgrid]]></category>
		<category><![CDATA[plot]]></category>
		<category><![CDATA[ribbons]]></category>
		<category><![CDATA[Specifying Starting Points for Stream Plots]]></category>
		<category><![CDATA[Stream]]></category>
		<category><![CDATA[stream3]]></category>
		<category><![CDATA[streamribbon]]></category>
		<category><![CDATA[subset]]></category>
		<category><![CDATA[subvolume]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[view]]></category>
		<category><![CDATA[volumebounds]]></category>

		<guid isPermaLink="false">http://www.matlabtutorials.com/?p=489</guid>
		<description><![CDATA[<h3>What Stream Ribbons Can Show</h3>
<p>Stream ribbons illustrate direction of flow, similar to stream lines, but can also show rotation about the flow axis by twisting the ribbon-shaped flow line. The streamribbon function enables you to specify a twist angle (in radians) for each vertex in the stream ribbons.  <a href='http://www.matlabtutorials.com/examples/displaying-curl-with-stream-ribbons.html' rel="nofollow">Read More</a></p>Matlab Tags: 3-D, AmbientStrength, axis, camlight, curl, EdgeColor, grid, lighting, matlab, meshgrid, plot, ribbons, Specifying Starting Points for Stream Plots, Stream, stream3, streamribbon, subset, subvolume, tutorials, view, volumebounds]]></description>
		<wfw:commentRss>http://www.matlabtutorials.com/examples/displaying-curl-with-stream-ribbons.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Matlab GUIDE: Getting Started</title>
		<link>http://www.matlabtutorials.com/documents/matlab-guide-getting-started.html</link>
		<comments>http://www.matlabtutorials.com/documents/matlab-guide-getting-started.html#comments</comments>
		<pubDate>Sun, 02 May 2010 17:15:30 +0000</pubDate>
		<dc:creator>matlabtutorials</dc:creator>
				<category><![CDATA[Documents]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[Layout Editor]]></category>
		<category><![CDATA[matlab]]></category>
		<category><![CDATA[Predefined Dialog Boxes]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.matlabtutorials.com/?p=482</guid>
		<description><![CDATA[<h3>GUI Layout</h3>
<p>GUIDE, the MATLAB graphical user interface development environment, provides a set of tools for creating graphical user interfaces (GUIs). These tools simplify the process of laying out and programming GUIs.<br />
<a href="http://www.matlabtutorials.com/wp-content/uploads/gui_layout_editor.png"><img src="http://www.matlabtutorials.com/wp-content/uploads/gui_layout_editor.png" alt="" title="gui_layout_editor" width="600" height="537" class="aligncenter size-full wp-image-484" /></a><br />
Using the GUIDE Layout Editor, you can populate a GUI by clicking and dragging GUI components—such as axes, panels, buttons, text fields, sliders, and so on—into the layout area. You also can create menus and context menus for the GUI. From the Layout Editor, you can size the GUI, modify component look and feel, align components, set tab order, view a hierarchical list of the component objects, and set GUI options. <a href='http://www.matlabtutorials.com/documents/matlab-guide-getting-started.html' rel="nofollow">Read More</a></p>Matlab Tags: gui, guide, Layout Editor, matlab, Predefined Dialog Boxes, programming]]></description>
		<wfw:commentRss>http://www.matlabtutorials.com/documents/matlab-guide-getting-started.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

