EigenNews
- The Newsletter of Eigenvector Research Vol. 6, No. 1
January
22, 2004
EigenNews
is an approximately quarterly note about the happenings at Eigenvector
Research, Inc., along with news of interest to the chemometrics,
analytical chemistry, spectroscopy and process modeling/monitoring
communities. (Subscribe and unsubscribe info at bottom.)
IN
THIS ISSUE:
1)
Upcoming Short Courses for 2004
Apr 7-9, Process Chemometrics, Washington DC
Jun 2-4, Process Chemometrics, Copenhagen, DK
Jun 7-10, Applied Multi-way Analysis, Copenhagen, DK
Jun 21-22, Chemometrics without Equations, Seattle, WA
Jun 23-25, Advanced Chemometrics, Seattle, WA
2)
PLS_Toolbox News
Fully functional PLS_Toolbox 3.0 Demos available
PLS_Toolbox 3.0.4 update
3)
Eigenvector Welcomes New Staff Member Scott Koch
4)
PLS_Toolbox User Tip: Options for Options
5)
Meeting and Workshop Calendar
Feb 16-20, WSC-3, Pushkinskiye Gory, RUSSIA
Mar 1- 2, RISBM 2004, Jena, GERMANY
Apr 26-28, APACT 2004, Bath, UK
Jun 14-17, CS2004, Quebec City, CANADA
Jul 5- 7, DYCOPS 2004, Boston, MA, USA
Aug 15-17, ICCMEVSRS 2004, Madison, WI, USA
Aug 30-Sep 2, CHEMSTAT 2004, Pardubice, CZECH REPUBLIC
Sep 12-15, EUCHEM/CHAMPS, Lund, SWEDEN
Sep 20-23, CAC-2004, Lisbon, PORTUGAL
Oct 3- 7, FACSS 2004, Portland, OR, USA
Nov 15-18, EAS 2004, Somerset, NJ, USA
6)
How did I get on this list?
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
1)
Upcoming Short Courses
Process
Chemometrics, our popular 3 day, hands-on course, will be held
April 7-9, 2004, in Washington, DC. This course is targeted
towards scientists and engineers who need to use chemometric methods
in the process environment, and is especially well suited for those
involved in PAT in the pharmaceutical industries. For more information,
including course and venue description, please see:
Process
Chemometrics, April 7-9, 2004
The
MathWorks
(makers of MATLAB) will be teaching MATLAB
Fundamentals on April 5-6, just prior to our DC Process
Chemometrics course and in the same facility. Registration will
be handled by The MathWorks.
Process
Chemometrics will also be held in Copenhagen, DK, on
June 2-4, and will be followed by Applied Multi-way Analysis, June
7-10. Rasmus Bro will be joined by Eigenvectors Barry Wise
to lead the courses. Applied Multi-way is aimed at scientists who
must deal with data logically arranged as 3 dimensional or higher
arrays, including hyphenated instruments such as GC/MS and batch
process data.
Process
Chemometrics, Applied Multi-way, June 2-10, 2004
Chemometrics
without Equations will be followed by Advanced Chemometrics,
June 21-25 in Seattle, WA, USA. Chemometrics without Equations
is designed for those who wish to explore the problem solving power
of chemometric tools by are discouraged by the high level of math
found in many texts. The Advanced course is aimed at scientists
and engineers who collect data from evolving systems, hyphenated
instruments such as GC/MS, and multivariate images.
Chemometrics
w/o Equations, Advanced Chemo, June 21-25, 2004.
Look
for additional course offerings this fall at CAC (Lisbon, Portugal),
FACSS (Portland, OR), and EAS (Somerset, NJ).
Need
chemometrics training at your site? Eigenvector has a rapidly
expanding curriculum available. In addition to the courses listed
above, we have courses that focus specifically on process monitoring,
inferential sensors for use in process control, multivariate image
analysis and multi-way analysis. Write to bmw@eigenvector.com for
more information.
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
2)
PLS_Toolbox News
Fully
Functional PLS_Toolbox 3.0 Demos Available
Still
not convinced PLS_Toolbox is the package for you? Try it out! Weve
made a fully functional (time expiring) demo available on-line.
The demo gives you a month to use all the power of PLS_Toolbox 3.0.
Get the demo here.
PLS_Toolbox
3.0.4 Update Now Available
We
continue to refine and improve PLS_Toolbox with the latest update,
3.0.4. This small update fixes a couple minor bugs. Registered PLS_Toolbox
3.0 users can get it in the download
area using their assigned username and password.
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3)
Eigenvector Welcomes New Staff Member Scott Koch
Eigenvector
Research is pleased to announce the addition of a new member to
our staff. Scott Koch comes to us with a background in chemistry
and the development of scientific software applications. Scotts
job title is Software Engineer, but he has a wide variety of experience.
Our favorite part of his resume was "PSIA Level II Certified
Ski Instructor: Possessed an uncanny ability to coax terrified children
and adults down steep terrain and back onto chair lifts."
The
addition of Scott to our staff will allow us to accelerate development
of PLS_Toolbox and better serve our clients needs for custom software
solutions. Welcome, Scott!
For
more about Scott, please see his resume.
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
4)
PLS_Toolbox User Tip: Options for Options
Many
PLS_Toolbox 3.0 functions have options which modify their behavior.
Typically, options are changed by passing an options structure (See
"New Features and Release Notes" in the PLS_Toolbox manual and our
web site's FAQ, http://software.eigenvector.com/toolbox/3_0/faq/?options
)
Here's
two other hints on using Options:
*
One-liners: You can easily combine a call to a function and
select your options-of-choice all at once! Using Matlab's "struct"
command, you can modify just the options you want to change right
inside the function call. For example, to call the PLS function
with plots and command window display turned OFF, you could use
the command:
>> model
= pls(x, y, ncomp, struct('plots','none','display','off'));
Note
that the options are defined in pairs: 'optionname','value' . For
more information please
see the FAQ.
*
Do It Your Way: You can completely avoid the use of options
structures by changing the default value for any option in any PLS_Toolbox
function. This is done through the PLS_Toolbox command "setplspref".
For example, the following commands could be used to turn off the
default plotting or display functionality of the PLS function:
>> setplspref('pls','plots','none')
%turn off plots in pls
>>
setplspref('pls','display','off') %turn off display in pls
The
setplspref settings are remembered from one Matlab session to another.
This is very useful to make a semi-permanent change to the default
behavior of any function without having to continually specify an
options structure each time the function is called.
You
can read
more about setplspref on our web site FAQ.
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
5)
Meeting and Workshop Calendar
The
following conferences and workshops should be of interest to chemometricians,
analytical chemists and process engineers. If you have a meeting
you'd like to list in the next EigenNews, please drop a line to
bmw@eigenvector.com
- Third
Winter School on Chemometrics in Russia (WSC-3) will be held in
Pushkinskiye Gory, Feb. 16-20, 2004.
http://rcs.chph.ras.ru/drushba.htm
- RISBM
2004, Raman and IR Spectroscopy in Biology and Medicine, Mar.
1-2, Jena, Thuringen, GERMANY.
http://www.risbm.org
- APACT
04, Advances in Process Analytics and Control Technology, Apr.
26-28, The Assembly Rooms, Bath, UK.
http://www.strath.ac.uk/Other/cpact/program/conf2004.htm
- Control
Systems 2004, Process Control in the Pulp and Paper Industry,
Jun. 14-17, Quebec City, CANADA.
http://www.paptac.ca/english/cs2004%20main.html
- DYCOPS,
7th International Symposium and Dynamics and Control
of Process Systems, July 5-7, Cambridge, MA, USA.
http://www.dycops.org/
- International
Conference on Coherent Multidimensional Electronic and Vibrational
Spectroscopy and 2D Raman Spectroscopy, Aug. 15-17, Madison, WI,
USA. Contact Prof. John Wright, wright@chem.wisc.edu.
- CHEMSTAT
2004, International Chemometrics Conference, Aug. 30-Sep. 2, Pardubice,
CZECH REPUBLIC.
http://www.trilobyte.cz/chemometrics/
- EUCHEM/CHAMPSChemometrics
Applied to Metabonomics, Proteomics and SAR, Sep. 12-15, Lund,
SWEDEN.
http://www.chemsoc.se/sidor/KK/euchem/champs/champs.htm
- The
Ninth Chemometrics in Analytical Chemistry Conference, CAC-2004,
will be September 20-23, 2004 in Lisbon, PORTUGAL.
http://dequim.ist.utl.pt/cac2004/
- FACSS
2004, 31st Annual Federation of Analytical Chemistry
and Spectroscopy Societies, Oct. 3-7, Portland, OR, USA
http://facss.org/
- EAS
2004, Eastern Analytical Symposium, Nov. 15-18, Somerset, NJ USA.
http://eas.org/
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
6)
How did I get on this list?
If
you are on this list, it means that you have corresponded with us,
gone to one of the same meetings, or have published information
about yourself (such as a web page) suggesting that you have an
interest in chemometrics, analytical chemistry, spectroscopy, or
chemical process modeling and monitoring. In other words, we had
some reason to believe that you might actually be interested in
receiving this newsletter.
Subscribe
and Unsubscribe requests can be made on the Eigenvector Subscription
Manager page at:
http://www.eigenvector.com/subscribe/
If
you have any problem getting on or off the list, please write to
me directly at bmw@eigenvector.com
or contact Eigenvector Research, Inc. directly:
Eigenvector
Research, Inc.
830 Wapato Lake Road
Manson, WA 98831
Phone: (509)687-2022
Fax: (509)687-7033
Email: bmw@eigenvector.com
Web: eigenvector.com
|