Title: Computer Science 121
1Computer Science 121
- Scientific Computing
- Winter 2012
2Who Am I?
Contact Google simon levy Interests Robotics /
drones, cognitive science, linguistics,
Artificial Intelligence, philosophy of mind,
programming languages, iPhone apps, ...
3Who Are You?
- Neuroscience
- Geology
- Biology
- Undecided
- Math
- English
- Accounting
4Who Are You?
- Senior (2012)
- Junior (2013)
- Sophomore (2014)
- Firstyear (2015)
-
5How Will You Do in this Course?
6Textbook
- Based on Matlab
- Developed over 4 yaears _at_ Macalester College
- Barely in print order from http//www.lulu.com
- We'll cover Ch. 1-8 in 1st 6 weeks, then various
remaining chapters based on interest/progress.
7Purpose
from http//www.macalester.edu/kaplan/
cs121/policies.pdf
- To teach you to write effective computer
programs. - To introduce you to some of the main
methodological areas of scientific computation
and provide you with the tools you need to carry
out computational tasks you are likely to
encounter in research.
8Purpose
(continued from Kaplan PDF)
- Scientific computing (???) Computing
(programming) for the sciences - But skills are transferable to general
programming work - Difficulties
- Absolute precision in specifying instructions
- Considering full range of circumstances of how a
program will be used - Considering how your assumptions may not be
shared by the user - Systematically tracking down bugs
- Breaking down complicated problems into
simple(r) sub-problems
9Matlab
- An integrated programming and graphical
environment - Interpreted interactive get answer immediately
- Also supports saving and loading large programs
- Student version available for 100 from
http//mathworks.com - Free, open-source equivalent Octave
- http//www.gnu.org/software/octave
10Matlab
- Issues
- Matlab vs.
- higher-level (Excel / SPSS) package
- lower-level (C / Java / Python) language
- Matlab vs. a similar package (Mathematica,
Maple) - Matlab vs. Python
111) Abstraction
- Recipe analogy How to make chocolate-chip
cookies? - High-level (Excel / SPSS) version
- Make chocolate-chip dough
- Bake cookies
121) Abstraction
- Low-level (Java / C) version
- Drive to store
- Buy dozen eggs, 1 lb. flour, 1lb. sugar, 1qt.
milk, 1 bag chocolate chips, 1 lb. butter, 1 lb.
lard - Drive home
- Turn oven dial to 375 F.
- Take out bowl, measuring cup
- Measure ½ cup lard, ½ cup butter
- Put butter, lard into bowl
- Stir butter, lard, clockwise 20 times,
counter-clockwise 20 times - Measure 1 cup flour
- Add flour to bowl
- Stir clockwise 10 times, ...
131) Abstraction
- Recipe analogy How to make a cake?
- Matlab version
(http//www.skyport.com/rogue-press/chocchip/basic
.htm)
- Mix ½ cup lard, ½ cup butter, getting them good
and creamy. - Mix in 1 cup flour, ¾ cup brown sugar, ¾ cup
white sugar, 2 eggs, 1 tsp. vanilla, and ½ tsp.
baking soda. - Work this over until it is thoroughly mixed,
then blend in 1 ¼ cup more flour. - Bake at 375 degrees 8-10 minutes.
142) Matlab vs. Mathematica / Maple
- Features
- Matlab Numerical (linear algebra)
- Maple, Mathematica Symbolic (calculus)
from http//www.physicsforums.com/archive/topic/
t45208_Matlab_vs_Maple_vs_Mathematica.html
... Matlab is excellent for manipulating data, or
dealing with any sort of matrix
calculations.. From my experience Mathematica is
ideal when it comes to symbolics such as
differentiation and integration. I've seen a few
cases where Mathematica blows Maple out of the
water when one compares the types of integrals
they can evaluate. Maple and Matlab have the
best graphics in my opinion. In both of them you
are allowed to rotate 3D graphics and zoom in on
the spot (2D) in realtime. In Mathematica things
are little more complicated, which often
elicits frustration. With Mathematica, in order
to zoom, you must change the window that you are
plotting with.
153) Matlab vs. Python
- Python General-purpose language popular in CS
- Interpreted
- Free, open-source
- SciPy (Matplotlib) Matlab-like packages
- Good support for parallel / high-performance
computing