- Matlab Matrix - Discussion
- Matlab Matrix - Useful Resources
- Matlab Matrix - Quick Guide
- Matlab-Matrix - Deletion Row & Coloumn
- Matlab-Matrix - Transpose
- Matlab-Matrix - Rank
- Matlab-Matrix - Trace
- Matlab-Matrix - Inverse
- Matlab-Matrix - Matrix Determinant
- Matlab-Matrix - Subtraction
- Matlab-Matrix - Addition
- Matlab-Matrix - Multiplication
- Matlab-Matrix - Working with Matrices
- Matlab-Matrix - Create Matrix
- Matlab-Matrix - Environment Setup
- Matlab-Matrix - Introduction
- Matlab-Matrix - Home
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Matlab-Matrix - Working with Matrices
In this chapter, I will deal with how to run the matrix inside MATLAB Environment to get the output. To define a matrix, and other matrix operations are discussed in details in the next chapters.
To get the matrix output in MATLAB will make use of −
Command Prompt
Using m-file
Using Command Prompt
You can execute matrices directly inside command prompt. Here is an example wherein we have two matrices a and b.
The operation a+b gives the sum of matrix a and b.
The operation a-b gives the subtraction of matrix a and b.
The output is command prompt is as shown below −
>> a = [ 1 2 3 ; 4 5 6; 7 8 9]; >> b = [ 7 5 6 ; 2 0 8; 5 7 1]; >> c = a + b c = 8 7 9 6 5 14 12 15 10 >> d = a - b d = -6 -3 -3 2 5 -2 2 1 8 >>
Using m-file
You can also make use of a file to write the code and later execute it inside command prompt as shown below −
Cpck on New script as shown below −
This is open a new unsaved file as shown below −
Save the file and write your code inside
The file is saved as testmatrix.m.
Now you can use the run button or type the name of the file inside command window.
The output will be shown in the command window as shown below −
>> testmatrix c = 8 7 9 6 5 14 12 15 10 d = -6 -3 -3 2 5 -2 2 1 8 >>Advertisements