Fall 2008
- Mon, Sep 8, 4pm, Math 101, Remote Connection, SSH, and VNC, by Joe McMahon
- Mon, Sep 15, 4pm, Math 102, An introduction to LaTeX and Beamer, by Kevin LaTourette
- Mon, Oct 13, 4pm, Math 101, Paradigm Shifts in Science Based Simulations, by Mac Hyman
- Mon, Oct 27, 4pm, Math 101, SQL for Joy: All your database are belong to us, by Karl Newell
For more details, and talks in past semesters, consult the
full schedule of talks.
Tentative talks:
- Scripting with Bash
- Power Point presentation using LaTeX
- GNU/Linux text editors
Interested in speaking?
Past topics can (and should) be repeated
occasionally. In addition,
here are some topics people might like to hear about:
- Femlab (PDE modeling environment)
- GAP (computer algebra software)
- Getting started with Maple (or Matlab, or Mathematica, ...)
- How to do math on a Mac
- How to filter e-mail spam
- HTML vs. XHTML (the new HTML standard)
- Octave (free Matlab-like system)
- PDAs (handheld personal digital assistants and much more)
- PHP (server-side webpage scripting)
- R (free statistics system)
- Remote access (SSH, VNC, dial-up, ...)
- Scientific WorkPlace (graphical front end to TeX)
- Setting up a dual boot system (DOS/Linux)
- TeX / LaTeX topics
- Using scanners efficiently
- Using the WINEDT editor (a front end to TeX, HTML)
- XML (extensible markup language)
- [your favorite topic here]
To give a talk, please contact
swig@math.arizona.edu.
IDL: Interactive Data Language
by Anu Rao
Running IDL
To run idl, at the Unix prompt type
idl
To access idl's online help, at the idl prompt type
IDL> ?
and a separate, menu-driven help window will pop up. To run
the built-in demo program, type
IDL> demo
and a separate window will pop up, with menu-driven options.
IDL Examples
We have some sample IDL scripts available online:
For example, to run the IDL script plots.pro, save the
file plots.pro and sine.dat to you directory. Then run IDL, and
type
IDL> .run plots
and a separate window will pop up with the plot.
Helpful Hints/Notes for IDL
- To save a plot to a postscript file filename.ps, type the
following commands:
set_plot, 'ps'
device, file='filename.ps'
.
.
plot commands
.
.
device, /close
To print out the file filename.ps, at the Unix prompt
type
lpr filename.ps
- To run an idl script name.pro as a background job and
store the output in the file name.out, at the Unix prompt
type
idl < name.pro > name.out &
-
NOTE: The indices for arrays and matrices begin at 0
- To view the value of a variable foo, type
IDL> print, foo
- To view detailed information about all variables being
used, type
IDL> help
- To view the available colormaps, type
IDL> loadct
- To load in a colormap, either type loadct, #entrynumber
or type xloadct and a window will pop up.
- The source code for the idl demos is not available. But
there are some examples kept in the
/usr/local/src/idl_4/examples/general directory.
-
NOTE: This is a commercial package, and thus
may not be readily available everywhere. There is a limited
7-minute demo version available for free, "for evaluation
purposes."
- If you intend to use LOTS of colors, then do the
following:
- create a file called .idl, containing the following
lines:
device, pseudo=8
window, 0, colors=256, /pixmap
wdelete, 0
- define the following environment variable in your
start-up file (in cshell, .cshrc; in kshell, .profile)
setenv IDL_STARTUP $HOME/.idl
- Some handy web sites: