Shared Scientific Toolbox in Java 1.00 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Shared Scientific Toolbox in Java 1.00 (Default branch)
# 1  
Old 04-10-2008
Shared Scientific Toolbox in Java 1.00 (Default branch)

Shared Scientific Toolbox in Java is a library ofquality lightweight components forscientific/distributed computing that includes thefirst true multidimensional array package in Java,a parallel data flow engine, an asynchronoussockets layer, an annotation-driven class loader,and more.License: OSI ApprovedChanges:
A Win32 build is now supported. It contains precompiled DLLs with statically-linked FFTW3. shared.net.SynchronousConnection was introduced, which is built on top of the asynchronous networking layer, but supports synchronous behavior with blocking input/output streams. The SST source is now Java 1.5 compatible. Take note that it still links to some methods (i.e., java.util.Arrays#copyOf) that are in JDK 1.6 only. Color maps for intensity images were introduced. The license terms and assigned copyrights were updated.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
native2ascii(1) 					      General Commands Manual						   native2ascii(1)

NAME
native2ascii - native to ASCII converter SYNOPSIS
native2ascii [ options ] [ inputfile [outputfile]] DESCRIPTION
The Java compiler and other Java tools can only process files that contain Latin-1 or Unicode-encoded (udddd notation) characters. native2ascii converts files that contain other character encoding into files containing Latin-1 or Unicode-encoded charaters. If outputfile is omitted, standard output is used for output. In addition, if inputfile is omitted, standard input is used for input. OPTIONS
The following options are supported: -encoding encoding_name Specifies the encoding name that is used by the conversion procedure. The default encoding is taken from system property file.encod- ing. The encoding_name string must be one taken from the first column of the table of supported encodings in the Supported Encodings document: http://java.sun.com/j2se/1.5/docs/guide/intl/encoding.doc.html -reverse Performs the reverse operation: converts a file with Latin-1 or Unicode-encoded characters to one with native-encoded characters. -Joption Pass option to the Java virtual machine, where option is one of the options described on the man page for the java applica- tion launcher, java(1). For example, -J-Xms48m sets the startup memory to 48 megabytes. It is a common convention for -J to pass options to the underlying virtual machine. 22 Jun 2004 native2ascii(1)