D2 Indices and matrices Matrix representation in computer systems:

Slides:



Advertisements
Similar presentations
Chapter 2 Section 2. Lemma Let i=1 and j=2, then.
Advertisements

Lecture # 9 Matrix Representation of Symmetry Groups
Arithmetic Operations on Matrices. 1. Definition of Matrix 2. Column, Row and Square Matrix 3. Addition and Subtraction of Matrices 4. Multiplying Row.
Fundamentals of matrices
100’s of free ppt’s from library
Row 1 Row 2 Row 3 Row m Column 1Column 2Column 3 Column 4.
AIM: How do we perform basic matrix operations? DO NOW:  Describe the steps for solving a system of Inequalities  How do you know which region is shaded?
Class Opener:. Identifying Matrices Student Check:
Slide Copyright © 2009 Pearson Education, Inc. 7.3 Matrices.
Section 9.2 Adding and Subtracting Matrices Objective: To add and subtract matrices.
Matrix Algebra Section 7.2. Review of order of matrices 2 rows, 3 columns Order is determined by: (# of rows) x (# of columns)
Matrices: Simplifying Algebraic Expressions Combining Like Terms & Distributive Property.
 6. Use matrices to represent and manipulate data, e.g., to represent payoffs or incidence relationships related in a network.  7. Multiply matrices.
Matrix Operations.
Algebra Matrix Operations. Definition Matrix-A rectangular arrangement of numbers in rows and columns Dimensions- number of rows then columns Entries-
Warm Up Perform the indicated operations. If the matrix does not exist, write impossible
EXAMPLE 1 Add and subtract matrices
Goal: Find sums, differences, products, and inverses of matrices.
= the matrix for T relative to the standard basis is a basis for R 2. B is the matrix for T relative to To find B, complete:
Notes Over 4.2 Finding the Product of Two Matrices Find the product. If it is not defined, state the reason. To multiply matrices, the number of columns.
Do Now: Perform the indicated operation. 1.). Algebra II Elements 11.1: Matrix Operations HW: HW: p.590 (16-36 even, 37, 44, 46)
Precalculus Section 14.1 Add and subtract matrices Often a set of data is arranged in a table form A matrix is a rectangular.
Matrix – is a rectangular arrangement of numbers in rows and columns. Dimensions – Size – m is rows, n is columns. m x n ( row ∙ column) Elements – The.
A rectangular array of numeric or algebraic quantities subject to mathematical operations. The regular formation of elements into columns and rows.
Matrices. Matrix A matrix is an ordered rectangular array of numbers. The entry in the i th row and j th column is denoted by a ij. Ex. 4 Columns 3 Rows.
Matrices.
13.4 Product of Two Matrices
Sections 2.4 and 2.5 Matrix Operations
12-1 Organizing Data Using Matrices
Multiplying Matrices.
ECE 1304 Introduction to Electrical and Computer Engineering
Christmas Packets are due on Friday!!!
Matrices Rules & Operations.
Matrix Operations Free powerpoints at
Matrix Operations.
Matrices - Addition and Subtraction
Matrix Operations.
Matrix Operations Free powerpoints at
What we’re learning today:
Matrix Operations Monday, August 06, 2018.
Matrix Operations.
Matrices and Data Holt Algebra 2.
BTEC NCF Dip in Comp - Unit 02 Fundamentals of Computer Systems Lesson 12 – Indices and Matrices Mr C Johnston.
Matrix Operations SpringSemester 2017.
Matrix Operations.
Matrix Operations Free powerpoints at
WarmUp 2-3 on your calculator or on paper..
7.3 Matrices.
25. Basic matrix operations
Matrix Operations.
Matrices Elements, Adding and Subtracting
Bellwork Change to Addition
Matrix Multiplication
MATRICES MATRIX OPERATIONS.
Section 2.4 Matrices.
2.2 Introduction to Matrices
Multidimensional array
Basics of Linear Algebra
Matrices and Data Holt Algebra 2.
Multi-Dimensional Arrays
3.5 Perform Basic Matrix Operations
Matrices Tuesday, 23 April 2019.
3.6 Multiply Matrices.
Linear Algebra review (optional)
Chapter 4 Matrices & Determinants
Matrix Operations SpringSemester 2017.
Matrix A matrix is a rectangular arrangement of numbers in rows and columns Each number in a matrix is called an Element. The dimensions of a matrix are.
Matrix Multiplication Sec. 4.2
Introduction to Matrices
Chapter 7 Section 7.2 Matrices.
Presentation transcript:

D2 Indices and matrices Matrix representation in computer systems: the relationship between matrices and arrays mathematical operations using matrices single, two- and multi-dimensional arrays row-major and column-major order.

A matrix is a rectangular collection of numbers which can be used in mathematical operations. Matrices are used in many areas of computing including in the calculations needed for ‘wire-framing’, which forms the basis of virtual gaming landscapes. A 2D matrix has 2 rows which can be used to hold the (x, y) coordinates of a shape. These can be multiplied by other matrices to produce new (x, y) coordinates for operations such as rotation, mirroring, resizing, and so on. Indices are used to identify items in a matrix. Arrays are similar to Matrices and sometimes are saved in the same format due to their similarity.

mathematical operations using matrices Mathematical operations include adding, subtracting etc. of matrices to allow them to be manipulated as shapes.

mathematical operations using matrices Mathematical operations include adding, subtracting etc. of matrices to allow them to be manipulated as shapes.