- MATLAB - Data Output
- MATLAB - Data Import
- MATLAB - Functions
- MATLAB - Strings
- MATLAB - Numbers
- MATLAB - Colon Notation
- MATLAB - Arrays
- MATLAB - Matrix
- MATLAB - Vectors
- MATLAB - Loops
- MATLAB - Decisions
- MATLAB - Operators
- MATLAB - Data Types
- MATLAB - M-Files
- MATLAB - Commands
- MATLAB - Variables
- MATLAB - Syntax
- MATLAB - Environment Setup
- MATLAB - Overview
- MATLAB - Home
MATLAB Advanced
- MATLAB - Simulink
- MATLAB - GNU Octave
- MATLAB - Transforms
- MATLAB - Polynomials
- MATLAB - Integration
- MATLAB - Differential
- MATLAB - Calculus
- MATLAB - Algebra
- MATLAB - Graphics
- MATLAB - Plotting
MATLAB Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
MATLAB - Decision Making
Decision making structures require that the programmer should specify one or more conditions to be evaluated or tested by the program, along with a statement or statements to be executed if the condition is determined to be true, and optionally, other statements to be executed if the condition is determined to be false.
Following is the general form of a typical decision making structure found in most of the programming languages −
MATLAB provides following types of decision making statements. Cpck the following pnks to check their detail −
Sr.No. | Statement & Description |
---|---|
1 | An if ... end statement consists of a boolean expression followed by one or more statements. |
2 | An if statement can be followed by an optional else statement, which executes when the boolean expression is false. |
3 | An if statement can be followed by one (or more) optional elseif... and an else statement, which is very useful to test various conditions. |
4 | You can use one if or elseif statement inside another if or elseif statement(s). |
5 | A switch statement allows a variable to be tested for equapty against a pst of values. |
6 | You can use one switch statement inside another switch statement(s). |