In this video you will get to know about how to start coding on MATLAB platform. After seeing this video you will learn the following: 1. You will be able set the layout of different windows: Command Window, Editor, Workspace, and Command History. 2. You will be able to do the settings using preferences option in MATLAB. 3. You will learn about the use of Command Window, Editor, Workspace, and Command History.
In this video you will get to know about the different ways to refer help in the MATLAB platform. After seeing this video you will learn the following: 1. How to browse MATLAB documentation for understanding the usage of any function. 2. How to take help by writing help followed by name of the function in the command window. 3. How to take help by double click the function and selecting an option from the drop down menu open after right click. 4. How to execute MATLAB statements directly without typing from MATLAB documentation.
In this video you will be able to get the information about the following concepts and MATLAB tools: 1. What do you understand by the term Variable in Programming languages? 2. How Assignment Operator (=) works in MATLAB? 3. Rules to be followed while giving name to variables. 4. MATLAB is case-sensitive. 5. Use of semicolon at the end of MATLAB statements. 6. How MATLAB deal with blank spaces within the statements? 7. Use of clear function to delete variables 8. Use of clc to clean command window
In this video you will be able to get the information about the following concepts and MATLAB tools: 1. Concept of Data Types in programming languages. 2. Integer Data types: int8, int16, int32, int64, uint8, uint16, uint32, uint64 3. Real Number Data types: single and double 4. Character Data type : char to store single character or string (group of characters) 5. Type casting to convert one data type to another. 6. Use of function who and whos 7. Example of writing a MATLAB code to determine area and perimeter of a rectangle.
In this video you will be able to get the information about the following concepts and MATLAB tools: 1. Writing mathematical expressions in MATLAB 2. Use of Arithmetic operators: addition, subtraction, multiplication, division, exponentiation. 3. Use of mod function to determine the remainder. 4. Use of mod function to determine if the given number is even or ODD 5. Use of mod function to determine if the given number is divisible by some another given number.
In this video you will be able to get the information about the following concepts and MATLAB tools: 1. Operator Precedence Rule 2. Rule of Associativity Above rules is followed by MATLAB while implementing arithmetic expressions.
In this video you will be able to get the information about the following concepts and MATLAB tools: 1. How to allow user to give input during program execution using input command. 2. How to display result by removing semicolon. 3. How to display data using disp command. 4. How to display integer, float and characters using fprintf command. 5. How to display real number upto some particular decimal places. 6. Role to '\n' to move to the next line.
In this video you will be able to get the information about the following constants in MATLAB: 1. Constant Pi and how to get its value. 2. How to display the value of PI upto particular decimal places using fprintf. 3. Why to use constant pi instead of using value 3.14 4. Mathematical expression that result to infinity and how infinity is represented in MATLAB. 5. Mathematical expression that result to invalid number and how it is represented in MATLAB. 6. Introduction to complex numbers and the role of iota. 7. How iota is represented in MATLAB.
In this video you will be able to get the information about the usage of Trigonometric Functions in MATLAB. You will learn the following: 1. How to get the list of Elementary Math Function using command Help elfun 2. How to use trigonometric functions. 3. How to convert radians into degree. 4. How to convert degrees into radians.
In this video you will be able to get the information about the usage of Exponential Functions in MATLAB. You will learn the following: 1. Use of exp function 2. Use of Logarithmic function with base e, 10 and 2. 3. Use of square root function (sqrt) 4. Use of nthpower to determine nth root of any given number.
In this video you will be able to get the information about the usage of Complex Functions in MATLAB. You will learn the following: 1. Complex numbers and basic terminology related to it: Real part, imaginary part, magnitude and phase of complex number. 2. How to create complex numbers in MATLAB without inbuilt function and using inbuilt function complex. 3. How to determine magnitude of complex number using function abs. 4. How to determine phase of complex number using function angle. 5. How to convert radians into degree. 6. How to determine conjugate of a complex number mathematically and using MATLAB command conj. 7. How to determine real and imaginary component in a complex number.
In this video you will be able to get the information about the usage of Rounding off Functions in MATLAB. You will learn the following: 1. Use of fix function to round off the value towards zero. 2. Use of floor function to round off the value toward lower integer value. 3. Use of ceil function to round off the value toward higher integer value. 4. Use of round function to round off the value same like we do mathematically. 5. Use of round function to round off the value to a particular decimal places.
In this video you will be able to get the information about the generation of random numbers in MATLAB. You will learn the following: 1. Generation of a single random number between 0 and 1. 2. Creating a matrix with element values generated randomly between 0 and 1. 3. Generation of a single integer random number between 1 and a given upper limit. 4. Generation of a single integer random number between a given range for example between 3 and 8.
In this video you will be able to get the information about Relational Operators and their implementation in MATLAB. You will learn the following: 1. Requirement of Relational or Boolean or Logical Expressions in programming languages. 2. Two types of operators used in Relational expressions: Relational Operators and Logical Operators. 3. Six different types of relational operators and their purpose. 4. Implementation of six relational operators in MATLAB. 5. Representation of the output of relational operator in MATLAB.
In this video you will be able to get the information about Logical Operators and their implementation in MATLAB. You will learn the following: 1. Requirement of Logical operators to combine more than one questions. 2. Three different types of logical operators and their purpose. 3. Implementation of three relational operators in MATLAB. 4. Representation of the output of logical operator in MATLAB.
In this video you will be able to get the information about the concept of ASCII code. You will learn the following concepts and MATLAB tools: 1. Requirement of ASCII codes. 2. Representation of characters with ASCII codes. 3. Representing character as integer value using typecasting. 4. Representing integer value as character using typecasting.
In this video you will be able to get the information about Operator precedence rule that involves arithmetic , relational and logical operators. You will learn the following concepts and MATLAB tools: 1. Operator precedence rule that involves arithmetic , relational and logical operators. 2. Associativity Rule. 3. Solving expression that involves multiple operators. 4. Solving expression that involves multiple operators and operand of different data type. 5. Implementation of the expression with multiple operators in MATLAB
In this video you will be able to get the information about some unusual but very important things that MATLAB does when we use Relational and Logical Operators. You will learn the following: 00:00 1. The reason of getting different output for the following two expression: a. 3 less than 5 || 0/0 b. 0/0 || 3 less than 5 05:21 2. The reason of getting output as 1 for any value of x substituted in the expressions like: 4 less than x less than 8 3. Expressions like 4 less than x less than 8 are not valid in most of the programming languages, but in MATLAB it is valid 08:24 Summary
In this video you will be able to get the information about the vectors and matrices. You will learn the following concepts and MATLAB tools: 1. Why MATLAB is known as MATLAB. 2. Introduction to vectors and matrices. 3. Difference between Row vector and column vectors. 4. Condition of similar Data types for the elements of vectors and matrices. 5. Rows and columns of vectors and matrices. 6. Dimension of vectors and matrices.
In this video you will be able to get the concept of creating row and column vector. You will learn how to create row and column vectors using the following MATLAB tools: 1. Using colon without declaring step size. 2. Using colon by declaring step size. 3. Using linspace function 4. Using Logspace function 5. Creating an empty vector. 6. How to grow vector using the concept of concatenation.
In this video you will be able to learn a method to access element of vector and to modify the value. You will learn the following concepts and MATLAB tools: 1. Concept of Index or subscript values. 2. Accessing element value from particular index. 3. Extracting the subset from the vector giving range of index values. 4. Extracting the subset from the vector giving specific index values. 5. Error obtained if one try to access value beyond the size of a vector. 6. Inserting the value at the index beyond the highest index value of a vector. 7. Transpose of a vector 8. Using end in the vector to access element from last index value.