<?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</title>
	<atom:link href="http://www.matlabtutorials.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.matlabtutorials.com</link>
	<description>Matlab tutorials and examples</description>
	<lastBuildDate>Sun, 06 Dec 2009 07:10:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>bsxfun</title>
		<link>http://www.matlabtutorials.com/functions/bsxfun.html</link>
		<comments>http://www.matlabtutorials.com/functions/bsxfun.html#comments</comments>
		<pubDate>Sun, 06 Dec 2009 07:10:20 +0000</pubDate>
		<dc:creator>matlabtutorials</dc:creator>
				<category><![CDATA[Functions]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[arrayfun]]></category>
		<category><![CDATA[divide]]></category>
		<category><![CDATA[ldivide]]></category>
		<category><![CDATA[magic]]></category>
		<category><![CDATA[mean]]></category>
		<category><![CDATA[minus]]></category>
		<category><![CDATA[rem]]></category>
		<category><![CDATA[repmat]]></category>

		<guid isPermaLink="false">http://www.matlabtutorials.com/?p=114</guid>
		<description><![CDATA[bsxfun &#8211; Apply element-by-element binary operation to two arrays with singleton expansion enabled
Syntax

1
C = bsxfun&#40;fun,A,B&#41;

Description
C = bsxfun(fun,A,B) applies an element-by-element binary operation to arrays A and B, with singleton expansion enabled. fun is a function handle, and can either be an M-file function or one of the following built-in functions:
@plus Plus
@minus Minus
@times Array multiply
@rdivide Right [...]]]></description>
		<wfw:commentRss>http://www.matlabtutorials.com/functions/bsxfun.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>arrayfun</title>
		<link>http://www.matlabtutorials.com/functions/arrayfun.html</link>
		<comments>http://www.matlabtutorials.com/functions/arrayfun.html#comments</comments>
		<pubDate>Sat, 05 Dec 2009 19:04:34 +0000</pubDate>
		<dc:creator>matlabtutorials</dc:creator>
				<category><![CDATA[Functions]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[Array Operations]]></category>
		<category><![CDATA[cell2mat]]></category>
		<category><![CDATA[cellfun]]></category>
		<category><![CDATA[function_handle]]></category>
		<category><![CDATA[spfun]]></category>
		<category><![CDATA[structfun]]></category>

		<guid isPermaLink="false">http://www.matlabtutorials.com/?p=110</guid>
		<description><![CDATA[arrayfun &#8211; Apply function to each element of array
Syntax

1
2
3
4
A = arrayfun&#40;fun, S&#41;
A = arrayfun&#40;fun, S, T, ...&#41;
&#91;A, B, ...&#93; = arrayfun&#40;fun, S, ...&#41;
&#91;A, ...&#93; = arrayfun&#40;fun, S, ..., 'param1', value1, ...&#41;

Description
A = arrayfun(fun, S) applies the function specified by fun to each element of array S, and returns the results in array A. The value [...]]]></description>
		<wfw:commentRss>http://www.matlabtutorials.com/functions/arrayfun.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>idivide</title>
		<link>http://www.matlabtutorials.com/functions/idivide.html</link>
		<comments>http://www.matlabtutorials.com/functions/idivide.html#comments</comments>
		<pubDate>Sat, 05 Dec 2009 18:59:09 +0000</pubDate>
		<dc:creator>matlabtutorials</dc:creator>
				<category><![CDATA[Functions]]></category>
		<category><![CDATA[Array Operations]]></category>
		<category><![CDATA[division]]></category>
		<category><![CDATA[ldivide]]></category>
		<category><![CDATA[mldivide]]></category>
		<category><![CDATA[mrdivide]]></category>
		<category><![CDATA[rdivide]]></category>

		<guid isPermaLink="false">http://www.matlabtutorials.com/?p=106</guid>
		<description><![CDATA[idivide &#8211; Integer division with rounding option
Syntax

1
2
3
4
5
6
C = idivide&#40;A, B, opt&#41;
C = idivide&#40;A, B&#41;
C = idivide&#40;A, B, 'fix'&#41;
C = idivide&#40;A, B, 'round'&#41;
C = idivide&#40;A, B, 'floor'&#41;
C = idivide&#40;A, B, 'ceil'&#41;

Description
C = idivide(A, B, opt) is the same as A./B for integer classes except that fractional quotients are rounded to integers using the optional rounding mode [...]]]></description>
		<wfw:commentRss>http://www.matlabtutorials.com/functions/idivide.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>floor</title>
		<link>http://www.matlabtutorials.com/functions/floor.html</link>
		<comments>http://www.matlabtutorials.com/functions/floor.html#comments</comments>
		<pubDate>Sat, 05 Dec 2009 18:57:18 +0000</pubDate>
		<dc:creator>matlabtutorials</dc:creator>
				<category><![CDATA[Functions]]></category>
		<category><![CDATA[ceil]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[round]]></category>

		<guid isPermaLink="false">http://www.matlabtutorials.com/?p=104</guid>
		<description><![CDATA[floor &#8211; Round toward negative infinity
Syntax

1
B = floor&#40;A&#41;

Description
B = floor(A) rounds the elements of A to the nearest integers less than or equal to A. For complex A, the imaginary and real parts are rounded independently.
Examples

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
a = &#91;-1.9, -0.2, 3.4, 5.6, 7.0, 2.4+3.6i&#93;
&#160;
a =
  Columns 1 through 4 
  -1.9000    [...]]]></description>
		<wfw:commentRss>http://www.matlabtutorials.com/functions/floor.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>fix</title>
		<link>http://www.matlabtutorials.com/functions/fix.html</link>
		<comments>http://www.matlabtutorials.com/functions/fix.html#comments</comments>
		<pubDate>Sat, 05 Dec 2009 18:55:22 +0000</pubDate>
		<dc:creator>matlabtutorials</dc:creator>
				<category><![CDATA[Functions]]></category>
		<category><![CDATA[ceil]]></category>
		<category><![CDATA[floor]]></category>
		<category><![CDATA[round]]></category>

		<guid isPermaLink="false">http://www.matlabtutorials.com/?p=102</guid>
		<description><![CDATA[fix    Round towards zero.
    fix(X) rounds the elements of X to the nearest integers
    towards zero.
Syntax

1
B = fix&#40;A&#41;

Description
B = fix(A) rounds the elements of A toward zero, resulting in an array of integers. For complex A, the imaginary and real parts are rounded independently.
Examples

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
a = &#91;-1.9, [...]]]></description>
		<wfw:commentRss>http://www.matlabtutorials.com/functions/fix.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>round</title>
		<link>http://www.matlabtutorials.com/functions/round.html</link>
		<comments>http://www.matlabtutorials.com/functions/round.html#comments</comments>
		<pubDate>Sat, 05 Dec 2009 18:52:37 +0000</pubDate>
		<dc:creator>matlabtutorials</dc:creator>
				<category><![CDATA[Functions]]></category>
		<category><![CDATA[ceil]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[floor]]></category>
		<category><![CDATA[round]]></category>

		<guid isPermaLink="false">http://www.matlabtutorials.com/?p=100</guid>
		<description><![CDATA[round  Round towards nearest integer.
    round(X) rounds the elements of X to the nearest integers.
    See also floor, ceil, fix.
 Syntax
Y = round(X)
Description
Y = round(X) rounds the elements of X to the nearest integers. For complex X, the imaginary and real parts are rounded independently.
Examples

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
a = &#91;-1.9, -0.2, [...]]]></description>
		<wfw:commentRss>http://www.matlabtutorials.com/functions/round.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introduction to Vectors in Matlab</title>
		<link>http://www.matlabtutorials.com/documents/introduction-to-vectors-in-matlab.html</link>
		<comments>http://www.matlabtutorials.com/documents/introduction-to-vectors-in-matlab.html#comments</comments>
		<pubDate>Fri, 04 Dec 2009 08:58:26 +0000</pubDate>
		<dc:creator>matlabtutorials</dc:creator>
				<category><![CDATA[Documents]]></category>
		<category><![CDATA[Define]]></category>
		<category><![CDATA[matlab]]></category>
		<category><![CDATA[matlab vectors]]></category>
		<category><![CDATA[vectors]]></category>

		<guid isPermaLink="false">http://www.matlabtutorials.com/?p=94</guid>
		<description><![CDATA[Defining a Vector

Matlab is a software package that makes it easier for you to enter matrices and vectors, and manipulate them. The interface follows a language that is designed to look a lot like the notation use in linear algebra. In the following tutorial, we will discuss some of the basics of working with vectors.
If [...]]]></description>
		<wfw:commentRss>http://www.matlabtutorials.com/documents/introduction-to-vectors-in-matlab.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>accumarray</title>
		<link>http://www.matlabtutorials.com/functions/accumarray.html</link>
		<comments>http://www.matlabtutorials.com/functions/accumarray.html#comments</comments>
		<pubDate>Wed, 09 Sep 2009 06:43:30 +0000</pubDate>
		<dc:creator>matlabtutorials</dc:creator>
				<category><![CDATA[Functions]]></category>
		<category><![CDATA[accumarray]]></category>
		<category><![CDATA[full]]></category>
		<category><![CDATA[length]]></category>
		<category><![CDATA[sparse]]></category>
		<category><![CDATA[sum]]></category>

		<guid isPermaLink="false">http://www.matlabtutorials.com/?p=89</guid>
		<description><![CDATA[Construct array with accumulation
Syntax
A = accumarray(subs,val)
A = accumarray(subs,val,sz)
A = accumarray(subs,val,sz,fun)
A = accumarray(subs,val,sz,fun,fillval)
A = accumarray(subs,val,sz,fun,fillval,issparse)
A = accumarray({subs1, subs2, &#8230;}, val, &#8230;)
Description
accumarray groups elements from a data set and applies a function to each group. A = accumarray(subs,val) creates an array A by accumulating elements of the vector val using the elements of subs as indices. The [...]]]></description>
		<wfw:commentRss>http://www.matlabtutorials.com/functions/accumarray.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>abs</title>
		<link>http://www.matlabtutorials.com/functions/abs.html</link>
		<comments>http://www.matlabtutorials.com/functions/abs.html#comments</comments>
		<pubDate>Wed, 09 Sep 2009 06:39:30 +0000</pubDate>
		<dc:creator>matlabtutorials</dc:creator>
				<category><![CDATA[Functions]]></category>
		<category><![CDATA[abs]]></category>
		<category><![CDATA[angle]]></category>
		<category><![CDATA[sign]]></category>
		<category><![CDATA[unwrap]]></category>

		<guid isPermaLink="false">http://www.matlabtutorials.com/?p=87</guid>
		<description><![CDATA[Absolute value and complex magnitude
Syntax

1
abs&#40;X&#41;

Description
abs(X) returns an array Y such that each element of Y is the absolute value of the corresponding element of X.
If X is complex, abs(X) returns the complex modulus (magnitude), which is the same as

1
sqrt&#40;real&#40;X&#41;.^2 + imag&#40;X&#41;.^2&#41;

Examples

1
2
3
4
5
6
7
abs&#40;-5&#41;
ans =
     5
&#160;
abs&#40;3+4i&#41;
ans =
     5

See Also
angle, sign, [...]]]></description>
		<wfw:commentRss>http://www.matlabtutorials.com/functions/abs.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>plot</title>
		<link>http://www.matlabtutorials.com/functions/plot.html</link>
		<comments>http://www.matlabtutorials.com/functions/plot.html#comments</comments>
		<pubDate>Thu, 13 Aug 2009 19:36:06 +0000</pubDate>
		<dc:creator>matlabtutorials</dc:creator>
				<category><![CDATA[Functions]]></category>
		<category><![CDATA[axes]]></category>
		<category><![CDATA[axis]]></category>
		<category><![CDATA[clc]]></category>
		<category><![CDATA[clf]]></category>
		<category><![CDATA[colordef]]></category>
		<category><![CDATA[grid]]></category>
		<category><![CDATA[hold]]></category>
		<category><![CDATA[legend]]></category>
		<category><![CDATA[loglog]]></category>
		<category><![CDATA[plot]]></category>
		<category><![CDATA[semilogx]]></category>
		<category><![CDATA[semilogy]]></category>
		<category><![CDATA[stem]]></category>
		<category><![CDATA[subplot]]></category>
		<category><![CDATA[title]]></category>
		<category><![CDATA[xlabel]]></category>
		<category><![CDATA[ylabel]]></category>

		<guid isPermaLink="false">http://www.matlabtutorials.com/?p=83</guid>
		<description><![CDATA[ plot   Linear plot. 
    plot(X,Y) plots vector Y versus vector X. If X or Y is a matrix,
    then the vector is plotted versus the rows or columns of the matrix,
    whichever line up.  If X is a scalar and Y is [...]]]></description>
		<wfw:commentRss>http://www.matlabtutorials.com/functions/plot.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
