<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.3" -->
<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/"
	>

<channel>
	<title>Matlab Tutorials</title>
	<link>http://www.matlabtutorials.com</link>
	<description>Matlab examples and matlab documents</description>
	<pubDate>Sun, 30 Mar 2008 21:01:04 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
	<language>en</language>
			<item>
		<title>Manipulating Matrices</title>
		<link>http://www.matlabtutorials.com/documents/manipulating-matrices.html</link>
		<comments>http://www.matlabtutorials.com/documents/manipulating-matrices.html#comments</comments>
		<pubDate>Thu, 13 Mar 2008 00:10:37 +0000</pubDate>
		<dc:creator>matlabtutorials</dc:creator>
		
		<category><![CDATA[Documents]]></category>

		<category><![CDATA[amateur mathematician]]></category>

		<category><![CDATA[Colon Operator]]></category>

		<category><![CDATA[diag]]></category>

		<category><![CDATA[example matrix]]></category>

		<category><![CDATA[magic Function]]></category>

		<category><![CDATA[magic squares]]></category>

		<category><![CDATA[Manipulating Matrices]]></category>

		<category><![CDATA[Subscripts]]></category>

		<category><![CDATA[sum]]></category>

		<guid isPermaLink="false">http://www.matlabtutorials.com/documents/manipulating-matrices.html</guid>
		<description><![CDATA[Matrices and Magic Squares
In MATLAB, a matrix is a rectangular array of numbers. Special meaning is sometimes attached to 1-by-1 matrices, which are scalars, and to matrices with only one row or column, which are vectors. MATLAB has other ways of storing both numeric and nonnumeric data, but in the beginning, it is usually best [...]]]></description>
		<wfw:commentRss>http://www.matlabtutorials.com/documents/manipulating-matrices.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Desktop Tools</title>
		<link>http://www.matlabtutorials.com/documents/desktop-tools.html</link>
		<comments>http://www.matlabtutorials.com/documents/desktop-tools.html#comments</comments>
		<pubDate>Wed, 12 Mar 2008 12:10:36 +0000</pubDate>
		<dc:creator>matlabtutorials</dc:creator>
		
		<category><![CDATA[Documents]]></category>

		<category><![CDATA[Command Window]]></category>

		<category><![CDATA[Debugger]]></category>

		<category><![CDATA[Directory Browser]]></category>

		<category><![CDATA[Editor]]></category>

		<category><![CDATA[help browser]]></category>

		<category><![CDATA[Launch Pad]]></category>

		<category><![CDATA[MATLAB related]]></category>

		<category><![CDATA[workspace]]></category>

		<guid isPermaLink="false">http://www.matlabtutorials.com/documents/desktop-tools.html</guid>
		<description><![CDATA[This section provides an introduction to MATLAB’s desktop tools. You can also use MATLAB functions to perform most of the features found in the desktop tools. The tools are:
•“Command Window”
•“Command History”
•“Launch Pad”
•“Help Browser”
•“Current Directory Browser”
•“Workspace Browser”
•“Array Editor”
•“Editor/Debugger”
]]></description>
		<wfw:commentRss>http://www.matlabtutorials.com/documents/desktop-tools.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>while</title>
		<link>http://www.matlabtutorials.com/controls/while.html</link>
		<comments>http://www.matlabtutorials.com/controls/while.html#comments</comments>
		<pubDate>Thu, 06 Mar 2008 16:14:52 +0000</pubDate>
		<dc:creator>matlabtutorials</dc:creator>
		
		<category><![CDATA[Controls]]></category>

		<category><![CDATA[while]]></category>

		<guid isPermaLink="false">http://localhost/wmatlab/controls/while.html</guid>
		<description><![CDATA[while  Repeat statements an indefinite number of times.
The general form of a while statement is:
while expression
statements
END
The statements are executed while the real part of the expression
has all non-zero elements. The expression is usually the result of
expr rop expr where rop is ==, &#60;, &#62;, &#60;=, &#62;=, or ~=.
The BREAK statement can be used to [...]]]></description>
		<wfw:commentRss>http://www.matlabtutorials.com/controls/while.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>return</title>
		<link>http://www.matlabtutorials.com/controls/return.html</link>
		<comments>http://www.matlabtutorials.com/controls/return.html#comments</comments>
		<pubDate>Thu, 06 Mar 2008 16:14:32 +0000</pubDate>
		<dc:creator>matlabtutorials</dc:creator>
		
		<category><![CDATA[Controls]]></category>

		<category><![CDATA[return]]></category>

		<guid isPermaLink="false">http://localhost/wmatlab/controls/return.html</guid>
		<description><![CDATA[return Return to invoking function.
return causes a return to the invoking function or to the keyboard.
It also terminates the KEYBOARD mode.
Normally functions return when the end of the function is reached.
A return statement can be used to force an early return.
Example

[Copy to clipboard][-]View CodeMATLAB1
2
3
4
5
6
7
function d = det&#40;A&#41;
if isempty&#40;A&#41;
d = 1;
return
else
...
end

See also function, keyboard.
]]></description>
		<wfw:commentRss>http://www.matlabtutorials.com/controls/return.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>elseif</title>
		<link>http://www.matlabtutorials.com/controls/elseif.html</link>
		<comments>http://www.matlabtutorials.com/controls/elseif.html#comments</comments>
		<pubDate>Thu, 06 Mar 2008 16:14:15 +0000</pubDate>
		<dc:creator>matlabtutorials</dc:creator>
		
		<category><![CDATA[Controls]]></category>

		<category><![CDATA[elseif]]></category>

		<guid isPermaLink="false">http://localhost/wmatlab/controls/elseif.html</guid>
		<description><![CDATA[elseif IF statement condition.
elseif is used with IF. The statements after the elseif are
executed if the expression is true and all the preceding IF and
elseif expressions are false. An expression is considered true if
the real part has all non-zero elements.
elseif does not need a matching END, while ELSE IF does.
The general form of the IF [...]]]></description>
		<wfw:commentRss>http://www.matlabtutorials.com/controls/elseif.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>if</title>
		<link>http://www.matlabtutorials.com/controls/if.html</link>
		<comments>http://www.matlabtutorials.com/controls/if.html#comments</comments>
		<pubDate>Thu, 06 Mar 2008 16:13:51 +0000</pubDate>
		<dc:creator>matlabtutorials</dc:creator>
		
		<category><![CDATA[Controls]]></category>

		<category><![CDATA[if]]></category>

		<guid isPermaLink="false">http://localhost/wmatlab/controls/if.html</guid>
		<description><![CDATA[if  if statement condition.
The general form of the if statement is
if expression
statements
ELSEIF expression
statements
ELSE
statements
END
The statements are executed if the real part of the expression
has all non-zero elements. The ELSE and ELSEIF parts are optional.
Zero or more ELSEIF parts can be used as well as nested IF&#8217;s.
The expression is usually of the form expr rop expr [...]]]></description>
		<wfw:commentRss>http://www.matlabtutorials.com/controls/if.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>for</title>
		<link>http://www.matlabtutorials.com/controls/for.html</link>
		<comments>http://www.matlabtutorials.com/controls/for.html#comments</comments>
		<pubDate>Thu, 06 Mar 2008 16:13:25 +0000</pubDate>
		<dc:creator>matlabtutorials</dc:creator>
		
		<category><![CDATA[Controls]]></category>

		<category><![CDATA[for]]></category>

		<category><![CDATA[statements]]></category>

		<guid isPermaLink="false">http://localhost/wmatlab/controls/for.html</guid>
		<description><![CDATA[for    Repeat statements a specific number of times.
The general form of a for statement is:
for variable = expr, statement, &#8230;, statement END
The columns of the expression are stored one at a time in
the variable and then the following statements, up to the
END, are executed. The expression is often of the form X:Y,
in [...]]]></description>
		<wfw:commentRss>http://www.matlabtutorials.com/controls/for.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>end</title>
		<link>http://www.matlabtutorials.com/controls/end.html</link>
		<comments>http://www.matlabtutorials.com/controls/end.html#comments</comments>
		<pubDate>Thu, 06 Mar 2008 16:11:51 +0000</pubDate>
		<dc:creator>matlabtutorials</dc:creator>
		
		<category><![CDATA[Controls]]></category>

		<category><![CDATA[end]]></category>

		<guid isPermaLink="false">http://localhost/wmatlab/controls/end.html</guid>
		<description><![CDATA[end Terminate scope of FOR, WHILE, SWITCH, TRY, and IF statements. Without END&#8217;s, FOR, WHILE, SWITCH, TRY, and IF wait for further input. Each end is paired with the closest previous unpaired FOR, WHILE, SWITCH, TRY or IF and serves to terminate its scope.
end can also serve as the last index in an indexing expression. [...]]]></description>
		<wfw:commentRss>http://www.matlabtutorials.com/controls/end.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>else</title>
		<link>http://www.matlabtutorials.com/controls/else.html</link>
		<comments>http://www.matlabtutorials.com/controls/else.html#comments</comments>
		<pubDate>Thu, 06 Mar 2008 16:11:32 +0000</pubDate>
		<dc:creator>matlabtutorials</dc:creator>
		
		<category><![CDATA[Controls]]></category>

		<category><![CDATA[else]]></category>

		<guid isPermaLink="false">http://localhost/wmatlab/controls/else.html</guid>
		<description><![CDATA[else   Used with IF.
else is used with IF.  The statements after the else are executed
if all the preceding IF and ELSEIF expressions are false.
The general form of the IF statement is
IF expression
statements
ELSEIF expression
statements
ELSE
statements
END
See also if, elseif, end.
]]></description>
		<wfw:commentRss>http://www.matlabtutorials.com/controls/else.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>continue</title>
		<link>http://www.matlabtutorials.com/controls/continue.html</link>
		<comments>http://www.matlabtutorials.com/controls/continue.html#comments</comments>
		<pubDate>Thu, 06 Mar 2008 16:11:16 +0000</pubDate>
		<dc:creator>matlabtutorials</dc:creator>
		
		<category><![CDATA[Controls]]></category>

		<category><![CDATA[continue]]></category>

		<guid isPermaLink="false">http://localhost/wmatlab/controls/continue.html</guid>
		<description><![CDATA[continue Pass control to the next iteration of FOR or WHILE loop.
continue passes control to the next iteration of FOR or WHILE loop
in which it appears, skipping any remaining statements in the body
of the FOR or WHILE loop.
In nested loops, continue passes control to the next iteration of
FOR or WHILE loop enclosing it.
See also break, [...]]]></description>
		<wfw:commentRss>http://www.matlabtutorials.com/controls/continue.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>case</title>
		<link>http://www.matlabtutorials.com/controls/case.html</link>
		<comments>http://www.matlabtutorials.com/controls/case.html#comments</comments>
		<pubDate>Thu, 06 Mar 2008 16:11:01 +0000</pubDate>
		<dc:creator>matlabtutorials</dc:creator>
		
		<category><![CDATA[Controls]]></category>

		<category><![CDATA[case]]></category>

		<guid isPermaLink="false">http://localhost/wmatlab/controls/case.html</guid>
		<description><![CDATA[case SWITCH statement case.
case is part of the SWITCH statement syntax, whose general form is:
SWITCH switch_expr
case case_expr,
statement, &#8230;, statement
case {case_expr1, case_expr2, case_expr3,&#8230;}
statement, &#8230;, statement
&#8230;
OTHERWISE,
statement, &#8230;, statement
END
See SWITCH for more details.
]]></description>
		<wfw:commentRss>http://www.matlabtutorials.com/controls/case.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>break</title>
		<link>http://www.matlabtutorials.com/controls/break.html</link>
		<comments>http://www.matlabtutorials.com/controls/break.html#comments</comments>
		<pubDate>Thu, 06 Mar 2008 16:10:39 +0000</pubDate>
		<dc:creator>matlabtutorials</dc:creator>
		
		<category><![CDATA[Controls]]></category>

		<category><![CDATA[break]]></category>

		<guid isPermaLink="false">http://localhost/wmatlab/controls/break.html</guid>
		<description><![CDATA[break Terminate execution of WHILE or FOR loop.
break terminates the execution of FOR and WHILE loops.
In nested loops, break exits from the innermost loop only.
If you use break outside of a FOR or WHILE loop in a MATLAB
script or function, it terminates the script or function at
that point.  If break is executed in an [...]]]></description>
		<wfw:commentRss>http://www.matlabtutorials.com/controls/break.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Examples of Expressions</title>
		<link>http://www.matlabtutorials.com/examples/examples-of-expressions.html</link>
		<comments>http://www.matlabtutorials.com/examples/examples-of-expressions.html#comments</comments>
		<pubDate>Thu, 06 Mar 2008 16:06:06 +0000</pubDate>
		<dc:creator>matlabtutorials</dc:creator>
		
		<category><![CDATA[Examples]]></category>

		<category><![CDATA[Expressions]]></category>

		<guid isPermaLink="false">http://localhost/wmatlab/examples/examples-of-expressions.html</guid>
		<description><![CDATA[You have already seen several examples of MATLAB expressions. Here are a few more examples, and the resulting values.

[Copy to clipboard][-]View CodeMATLAB1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
rho = &#40;1+sqrt&#40;5&#41;&#41;/2
rho =
1.6180
a = abs&#40;3+4i&#41;
a =
5
z = sqrt&#40;besselk&#40;4/3,rho-i&#41;&#41;
z =
0.3730+ 0.3214i
huge = exp&#40;log&#40;realmax&#41;&#41;
huge =
1.7977e+308
toobig = pi*huge
toobig =
Inf

]]></description>
		<wfw:commentRss>http://www.matlabtutorials.com/examples/examples-of-expressions.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>pack</title>
		<link>http://www.matlabtutorials.com/functions/pack.html</link>
		<comments>http://www.matlabtutorials.com/functions/pack.html#comments</comments>
		<pubDate>Thu, 06 Mar 2008 15:58:35 +0000</pubDate>
		<dc:creator>matlabtutorials</dc:creator>
		
		<category><![CDATA[Functions]]></category>

		<category><![CDATA[matlab functions]]></category>

		<category><![CDATA[pack]]></category>

		<guid isPermaLink="false">http://localhost/wmatlab/functions/pack.html</guid>
		<description><![CDATA[pack   Consolidate workspace memory.
pack performs memory garbage collection. Extended MATLAB sessions may cause memory to become fragmented, preventing
large variables from being stored. pack is a command that saves all variables on disk, clears the memory, and then
reloads the variables.
If you run out of memory often, here are some additional system
specific tips:
Windows:   [...]]]></description>
		<wfw:commentRss>http://www.matlabtutorials.com/functions/pack.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>open</title>
		<link>http://www.matlabtutorials.com/functions/open.html</link>
		<comments>http://www.matlabtutorials.com/functions/open.html#comments</comments>
		<pubDate>Thu, 06 Mar 2008 15:58:11 +0000</pubDate>
		<dc:creator>matlabtutorials</dc:creator>
		
		<category><![CDATA[Functions]]></category>

		<category><![CDATA[matlab functions]]></category>

		<category><![CDATA[open]]></category>

		<guid isPermaLink="false">http://localhost/wmatlab/functions/open.html</guid>
		<description><![CDATA[OPEN  Open files by extension.
open NAME where NAME must contain a string, does different things
depending on the type of the object named by that string:
Type         Action
&#8212;-         &#8212;&#8212;
variable      open named array in Array Editor
.mat [...]]]></description>
		<wfw:commentRss>http://www.matlabtutorials.com/functions/open.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
