py4sci

Previous topic

Modeling Vectors and Matrices

Programming Exercise Set 1ΒΆ

Due: Midnight Tuesday Feb 12

To recap, you are being asked to turn in two related exercises by emailing (to dsklar at sfsu.edu) two files as attachments. Your file names should have the group number before the .py For example group 17 would have files named `vecFunctions-17.py and matrixFunctions-17.py.

Note: You will need to update your group number and list of student names

#######  START Administrivia
m400group = 17   # change this to your group number

m400names = ['student 1', 'student 2'] # change this for your names

def printNames():
    print("matrixFunctions.py for group %s:"%(m400group)),
    for name in m400names:
        print("%s, "%(name)),
    print

printNames()

#######  END Administrivia