Giter Site home page Giter Site logo

dsc-linalg-vector-matrices-numpy-lab-houston-ds-082619's Introduction

Vectors and Matrices in Numpy - Lab

Introduction

In this lab, you'll solve some simple matrix creation and manipulation exercises based on what you've learned so far in this section. The key takeaway here is to be able to understand how to use indexing with matrices and vectors while applying some basic operations.

Objectives

In this lab you will:

  • Find the shape of vectors and matrices
  • Access and manipulate individual scalar components of a matrix
  • Create vectors and matrices using Numpy and Python

1. Define two arrays $A$ with shape $ (4 \times 2)$ and $B$ with shape $(2 \times 3)$

So $A =
\left[ {\begin{array}{cc} 1402 & 191 \ 1371 & 821\ 949 & 1437 \ 147 & 1448 \ \end{array} }\right] $ and $ B =
\left[ {\begin{array}{ccc} 1 & 2 & 3 \ 4 & 5 & 6\ \end{array} }\right] $

# Code here

2. Print the dimensions of $A$ and $B$

# Code here

3. Print elements from $A$

Print the following elements from $A$:

  • First row and first column
  • First row and second column
  • Third row and second column
  • Fourth row and first column
# Code here

4. Write a routine to populate a matrix with random data

  • Create an $(3 \times 3)$ Numpy array with all zeros (use np.zeros())
  • Access each location $(i,j)$ of this matrix and fill in random values between the range 1 and 10
# Code here

5. Turn the above routine into a function

  • Create two $(4 \times 4)$ zero-valued matrices and fill with random data using the function
  • Add the matrices together in Numpy
  • Print the results
# Code here

Summary

In this lab, we saw how to create and manipulate vectors and matrices in Numpy. We shall now move forward to learning more complex operations including dot products and matrix inversions.

dsc-linalg-vector-matrices-numpy-lab-houston-ds-082619's People

Contributors

shakeelraja avatar loredirick avatar sumedh10 avatar fpolchow avatar

Watchers

James Cloos avatar Kevin McAlear avatar  avatar Mohawk Greene avatar Victoria Thevenot avatar Belinda Black avatar Bernard Mordan avatar raza jafri avatar  avatar Joe Cardarelli avatar The Learn Team avatar Sophie DeBenedetto avatar  avatar Antoin avatar Alex Griffith avatar  avatar Amanda D'Avria avatar  avatar Nicole Kroese  avatar Kaeland Chatman avatar Lisa Jiang avatar Vicki Aubin avatar Maxwell Benton avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.