Controls
-
Linear Algebra
Informally, the terms matrix and array are often used interchangeably. More precisely, a matrix is a two-dimensional numeric array that…
Read More » -
The Colon Operator
The colon, :, is one of MATLAB’s most important operators. It occurs in several different forms. The expression 1:10 is…
Read More » -
while
while Repeat statements an indefinite number of times. The general form of a while statement is: while expression statements END…
Read More » -
return
return Return to invoking function. return causes a return to the invoking function or to the keyboard. It also terminates…
Read More » -
elseif
elseif IF statement condition. elseif is used with IF. The statements after the elseif are executed if the expression is…
Read More » -
if
if if statement condition. The general form of the if statement is if expression statements ELSEIF expression statements ELSE statements…
Read More » -
for
for Repeat statements a specific number of times. The general form of a for statement is: for variable = expr,…
Read More »
- 1
- 2