matrix_operations/

directory
v0.0.0-...-e636a3f Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 27, 2017 License: Apache-2.0

README

Matrix Operations, Linear Algebra

As mentioned, matrix operations are ubiquitous in the data science world. Most machine learning algorithms and many statistical/modeling techniques rely on iterative matrix operations including solving for eigenvalues/vectors, finding determinants, taking transposes, and more. We will highlight a few here, such that you can have confidence in implementing your own custom models and understand various pre-existing implementations.

Notes

  • Matrix multiplication is in general not commutative.
  • Many of the familiar rules for arithmetic with numbers hold in the case of matrix arithmetic.
  • "Eigenvectors are a special set of vectors associated with a linear system of equations (i.e., a matrix equation) that are sometimes also known as characteristic vectors, proper vectors, or latent vectors... Each eigenvector is paired with a corresponding so-called eigenvalue" from Wolfram Mathworld.
  • A norm is a function that assigns a strictly positive length or size to a vector or matrix.

github/gonum/matrix/mat64 docs
The Matrix Cookbook
Khan Academy - Matrices
Khan Academy - Linear Algebra
Eigenvalues and eigenvectors explained visually

Code Review

Matrix arithmetic
Transpose, Det, Dot Product, Inverse
Solve for eigenvalues/vectors
Vector/Matrix Norms

Exercises

Exercise 1

Divide the following matrix by its norm:

a = ⎡1  2  3⎤
    ⎢0  4  5⎥
    ⎣0  0  6⎦

Template | Answer


All material is licensed under the Apache License Version 2.0, January 2004.

Directories

Path Synopsis
Sample program to show basic matrix operations.
Sample program to show basic matrix operations.
Sample program to compute the transpose, determinant, and inverse of a matrix.
Sample program to compute the transpose, determinant, and inverse of a matrix.
Sample program to solve an eigenvalue/vector problem.
Sample program to solve an eigenvalue/vector problem.
Sample program to compute vector and matrix norms.
Sample program to compute vector and matrix norms.
exercises
exercise1
Sample program to divide a matrix by its norm.
Sample program to divide a matrix by its norm.
template1
Sample program to divide a matrix by its norm.
Sample program to divide a matrix by its norm.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL