C – Multidimensional Array

After reading this C multidimensional array topic, you will understand its theory and examples also you will able to implement two-dimensional array in C programming.

Often there is a need to store and manipulate two-dimensional data structure such as tables and matrices. The C Multidimensional Array facility helps to manipulate tables, matrices, etc. in programming. Continue reading C – Multidimensional Array

C – Conditional Statements

After reading this conditional statements topic, you will understand conditional statements types and you will know the conditional statements flowchart, theory, and examples.

Like the real-life situation, C language provides the facility to user to take decisions based on any condition in a program. The C statements through which we can control the execution of the program is called decision control statements.

The conditional statements execute different statements based on different conditions. It can be classified as shown below into uni-directive statement, bi-directive statement and multi-way branching statement.

Continue reading C – Conditional Statements

MATLAB String

After reading the MATLAB String topic, you will understand how to create and manipulate the string, and you will understand how to use string built-in functions in MATLAB.

An array of characters is called string. It is created by typing the characters within single quotes. Characters that can be used in the string as lowercase letters (a – z), uppercase letters (A – Z), digits (0 – 9) and other characters as (#, %, &, etc.) Continue reading MATLAB String

MATLAB Variable as Scalar, Vector, or Matrix

After reading the MATLAB Variable as Scalar, Vector, or Matrix topic, you will understand how to create a variable as a Scalar, Vector, and Matrix in MATLAB.

Variable in MATLAB can be of following types:

  • A variable (or array) with one element is called scalar.
  • A variable (or array) with one row or one column of elements called vector.
  • A variable (or array) with elements in rows and columns is called matrix.

Continue reading MATLAB Variable as Scalar, Vector, or Matrix