
Main
Home
Documentation
Mailing Lists
Demonstration
Download
Sourceforge project
FAQ
History
Links
Contact
Developers
|
JMatLink
Connect Matlab and Java.
[Index]
[Documentation]
[Demonstration]
[Download]
Latest News
Release of JMatLink V1.3.0
here.
December 28, 2005 by Stefan Müller
New features:
- The newest feature is engGetFigure() which returns a figure window from matlab as a java image.
See the following example:
Image im;
JMatLink engine = new JMatLink();
engine.engOpen();
engine.engEvalString("surf(peaks)");
im = engine.engGetFigure(1, 300, 250);
engine.engClose();
- added two new methods to retrieve a figure from matlab into JMatLink.
Image engGetFigure(long epI, int figure, int dx, int dy)
and
Image engGetFigure(int figure, int dx, int dy)
- updated the javadoc documentation
Older News
Index
JMatLink makes it possible to connect Java and Matlab
original JMatLink webpage
|