Difference between revisions of "Course software"

From Process Model Formulation and Solution: 3E4
Jump to navigation Jump to search
(Created page with "You may use '''''any software''''' in the course to complete the assignments and labs. The official course software packages are either '''MATLAB''' or '''Python'''. Solutions t...")
 
m
 
(9 intermediate revisions by the same user not shown)
Line 1: Line 1:
You may use '''''any software''''' in the course to complete the assignments and labs. The official course software packages are either '''MATLAB''' or '''Python'''.  Solutions to questions and class discussions will use either programming languange. ''Please note'': the computer laboratories only have MATLAB installed.
You may use '''''any software''''' in the course to complete the assignments and labs. The official course software packages are either '''MATLAB''' or '''Python'''.  Solutions to questions and class discussions will use either programming languange. ''Please note'': the computer laboratories only have MATLAB installed.


'''Microsoft Excel is not recommended''': it cannot perform some of the calculations and plots that you will require in the course, and it's accuracy is [http://dx.doi.org/10.1016/j.csda.2008.03.004 very poor] (the article documents several functions that produce incorrect results).  
'''Microsoft Excel is not recommended''': it cannot perform some of the calculations and plots that you will require in the course, and its accuracy is [http://dx.doi.org/10.1016/j.csda.2008.03.004 very poor] (the article documents several functions that produce incorrect results).  




= About Python =
<span style="float:center; background-color:#FAF0E6; border:1px solid #AAAAAA; padding: 10px 10px 10px 10px;">A detailed [[Software_tutorial |'''sequence of software tutorials''']] is available.</span> It is expected that you work through these tutorials on your own.
 
You might not be familiar with Python.  Here is a comparison with MATLAB:
 
* Many companies already use it as a standard package now
* It can run on Windows, Linux and Mac computers (students are increasingly using Mac and Linux platforms)
* Commercial software support is available from 3rd parties
* The software can be installed on a local desktop, or in a networked environment and run remotely
* It is free (both for academic and commercial use), so it can used after you graduate
* Installation is straightforward
* The license is not restrictive: you can legally modify and improve the software
* There are excellent add-on libraries for almost anything related to data analysis
* It promotes good practice of writing a code file, and then running it (like MATLAB).  The code file documents what you have done, and you can always repeat your analysis on a new data set, or share the code with colleagues.  Other software packages tend to promote a more point-and-click approach, so you can't always retrace your steps.
* There are multicore and 64-bit versions of Python available to process large data sets, and do parallel data processing
 
= Installation instructions: specific to this course =
 
Here are some instructions for Windows-users that want to use Python for the course.  Linux and Mac users - please [[User:Kevindunn | speak to me]] and I can help you out.

Latest revision as of 01:08, 13 September 2010

You may use any software in the course to complete the assignments and labs. The official course software packages are either MATLAB or Python. Solutions to questions and class discussions will use either programming languange. Please note: the computer laboratories only have MATLAB installed.

Microsoft Excel is not recommended: it cannot perform some of the calculations and plots that you will require in the course, and its accuracy is very poor (the article documents several functions that produce incorrect results).


A detailed sequence of software tutorials is available. It is expected that you work through these tutorials on your own.