If statement is a branch that uses a control expression/statement which in turn permits us to select and execute specific block/blocks of code while skipping other block/blocks of code.
The if-construct has the following format:
if control/logical_expression_1
{
........... execute this block 1
........... execute this block 1
}
elseif ...
10/02/2015
26/08/2014
1:00 pm
Unknown
Basics, Built-in Functions
No comments

Multiple plotting.
One of the most admirable features of MATLAB is its
extensive device independent plotting capabilities. They make it very easy to
plot any data or expression at any time. Any pair of vectors can be plotted
versus each other as long as both vectors have the same length.
Here we will discuss......
How to have:
1- Continuous Plots/graphs.
2- ...
07/08/2014
7:09 am
Unknown
Basics, Built-in Functions
No comments
MATLAB includes a special function named end, it’s very useful for creating array subscripts.End function when used in place of an array (row
vector, column vector and matrix) subscript always returns maximum value
that a subscript can have in accordance with size of respective array.
?It should be clear here that
end function returns the...
21/07/2014
11:56 am
Unknown
Basics
No comments
MATLAB always stores the single dimension and multidimensional arrays or matrix elements in column major order i.e MATLAB first allocates the first column in computer memory then it allocates the second column in computer memory and so on until all the columns of the respective array or matrix have been stored in computer memory.
The following examples will better explain...
16/07/2014
5:06 am
Unknown
Basics, Built-in Functions, Commands
No comments
In MATLAB we use the following commands under certain conditions to find minimum values.
General form:
min(X) or min(abs(X))
Where X can be any thing it can be a matrix or row vector or a column vector.
? In case of matrix:
...
12/07/2014
3:08 am
Unknown
Basics, Operators
No comments
To know about how to extract a column from an array or matrix in MATLAB consider the following form i.e
variable-name=matrix-name(rows,columns)
where:
? Variable-name:
It shows the place where...
2:51 am
Unknown
Basics, Operators
No comments
To know about how to extract a row from an array or matrix in MATLAB consider the following form i.e
variable-name=matrix-name(rows,columns)
where:
? Variable-name:
It shows the place where you can name your variable in which...
Subscribe to:
Posts (Atom)