{ "metadata": { "name": "" }, "nbformat": 3, "nbformat_minor": 0, "worksheets": [ { "cells": [ { "cell_type": "heading", "level": 1, "metadata": {}, "source": [ "The Scale_a_matrix routine" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This notebook walks you through how to implement a simple function that scales a matrix $ A $ by a scalar $ \\beta $, overwriting $ A $." ] }, { "cell_type": "heading", "level": 2, "metadata": {}, "source": [ "Getting started" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We will use some functions that are part of our laff library (of which this function will become a part) as well as some routines from the FLAME API (Application Programming Interface) that allows us to write code that closely resembles how we typeset algorithms using the FLAME notation. These functions are imported with the \"import laff as laff\" and \"import flame\" statements." ] }, { "cell_type": "heading", "level": 2, "metadata": {}, "source": [ "Algorithm" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\"Set" ] }, { "cell_type": "heading", "level": 2, "metadata": {}, "source": [ "The routine" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The specific laff function we will use is laff.scal which, when given a row or column vector (stored as a 1 x n or n x 1 matrix) and a scalar scales that vector. \n", "\n", "Code the routine with the Spark webpage ." ] }, { "cell_type": "code", "collapsed": false, "input": [ "# insert code here\n", "\n", "\n" ], "language": "python", "metadata": {}, "outputs": [] }, { "cell_type": "heading", "level": 2, "metadata": {}, "source": [ "Testing" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Let's quickly test the routine by creating a 5 x 4 matrix and then scaling by a scalar." ] }, { "cell_type": "code", "collapsed": false, "input": [ "from numpy import random\n", "from numpy import matrix\n", "\n", "beta = matrix( '2.' )\n", "A = matrix( random.rand( 5,4 ) )\n", "\n", "print( 'beta = ' )\n", "print( beta )\n", "\n", "print( 'A before =' )\n", "print( A )" ], "language": "python", "metadata": {}, "outputs": [] }, { "cell_type": "code", "collapsed": false, "input": [ "Scale_a_matrix_unb_var1( beta, A )\n", "\n", "print( 'A after =' )\n", "print( A )" ], "language": "python", "metadata": {}, "outputs": [] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Bingo, it seems to work!" ] }, { "cell_type": "heading", "level": 2, "metadata": {}, "source": [ "Try it yourself (homework 3.3.1.3)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now, write an alternative algorithm that scales $ A $ one row at a time." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Use the Spark webpage to generate the function Scale_a_matrix_unb_var2( beta, A ) that computes $ A := \\beta A $ one row at a time." ] }, { "cell_type": "code", "collapsed": false, "input": [ "# insert code here\n", "\n", "\n" ], "language": "python", "metadata": {}, "outputs": [] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Test your routine with the following" ] }, { "cell_type": "code", "collapsed": false, "input": [ "from numpy import random\n", "from numpy import matrix\n", "\n", "beta = matrix( '2' );\n", "A = matrix( random.rand( 5,4 ) )\n", "\n", "print( 'A before =' )\n", "print( A )\n", "\n", "Scale_a_matrix_unb_var2( beta, A )\n", "print( 'A after =' )\n", "print( A )" ], "language": "python", "metadata": {}, "outputs": [] }, { "cell_type": "heading", "level": 2, "metadata": {}, "source": [ "Watch your code in action!" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Copy and paste the code into PictureFLAME , a webpage where you can watch your routine in action. Just cut and paste into the box. \n", "\n", "Disclaimer: we implemented a VERY simple interpreter. If you do something wrong, we cannot guarantee the results. But if you do it right, you are in for a treat.\n", "\n", "If you want to reset the problem, just click in the box into which you pasted the code and hit \"next\" again." ] } ], "metadata": {} } ] }