Matrices and linear algebra

Introduction

Introduction

t(v) to transpose

matrix function

matrix(1, nrow=3, nrow=2)

matrix(c(1,2,3,4,5,6),nrow=2)

invert M by solve(M)

mmult with

A %*% M
A %*% v

dim() on matrix?