JScience is a comprehensive Java library for scientific computing.

learn more… | top users | synonyms

0
votes
2answers
50 views

Java JScience: How to print the whole Real number?

Right, so I wrote some testing code which calculated Pi to whatever thing I wanted it to calculate to. It looks something like this: public static void piCalculatorMethod1() { int iteration = ...
0
votes
0answers
27 views

Algorithm or requirement behind Bowtie?

BOWTIE maps test reads to a reference genome. Basically it's a String comparison. Reference String could be a million base pair made by combinations of A C T & G, also the test reads, Now what ...
0
votes
1answer
58 views

Matrix.solve() gives different answer with RationalFunction than with Rational

I'm using the Jscience linear algebra module to solve a linear system of rational numbers. This works as expected and gives the correct result: public static void main(String[] args) { ...
0
votes
1answer
26 views

JScience formatting fractions

is there an easy way to format numbers as fractions. if user inputs "1/4in into a INCH unit value, i would like to see "1/4" instead of .25, 1/3 instead of .333333 etc.. sort of like an alias for ...
0
votes
0answers
31 views

How to parse compound units in JSCIENCE

just started using JScience. attempting to find a way to handle all sorts of user input. i know that... Amount.valueOf("100 ft"); // yay, it works ....will work, and i can use alias' like ...
11
votes
2answers
217 views

Is there any available API to represent various units of item like KG, Litre, Metre, KM, etc

In my project, somewhere I have to work with a unitOfIssue of Items. Now, various items of course can have different units of representation. So, I was searching for some API or some way, to elegantly ...
0
votes
0answers
16 views

JScience - Rounding a Measure

Using the JScience library (http://jscience.org/). Is there a way to set the number of decimal places displayed by the Measure.toString() method without affecting the actual stored values? One could ...
1
vote
1answer
150 views

Making a contourplot in Java from large data-arrays [closed]

I have the following question: Is there a Tool to make an contureplot in Java during the runtime out of large data arrays? I found many post related to this question (also here contourplot question ...
0
votes
1answer
66 views

GWT and JScience

In my GWT application, I made a control to display/edit a numerical value with an associated unit (for example to convert meters <-> feet). How could I use the JScience library (jsr-275 ...
2
votes
2answers
243 views

Matrix Computing is too slow

I am developing the game that named Lights Out. So for solving this, i have to compute the answer of AX = B in modules 2. So, for this reason i choose jscience library. In this game the size of A is ...
0
votes
1answer
159 views

Grails: how to store jScience Amounts

I am trying to store jscience physics amounts in my grails project. I am using hibernate and defaults, but I would prefer something with general applicability. I am specifically concerned with Mass ...
7
votes
3answers
275 views

How do I make Java format a double like -3.2 rather than -3.1999999999999953?

My app is producing doubles where Double.toString() produces "-3.1999999999999953" - whereas I would expect it to produce "-3.2". I'm actually getting these doubles from JScience's ...
1
vote
1answer
174 views

Is there a way to make JScience output in a more “human friendly” format?

When I use toString() for JScience Amount objects I get results like this: (7.5 ± 4.4E-16) mph This isn't awful, but I'd really like it to output something like: 7.5 miles per hour Is there an ...
1
vote
1answer
496 views

Single Variable Polynomial (from text file)

I want to modify the below code to read the nodes from a text file (vs. hard-coded values) Furthermore, read data from text file in the format: P1 = 3 5 1 -1 0 8 P2 = 5 6 2 -1 1 7 0 -4 etc... ...
2
votes
1answer
493 views

Example of JScience 5.0

I'm trying to give JScience-physics 5.0-SNAPSHOT a spin. Unfortunately I can't seem to find the entry into the code. The examples on the JScience website are all for 4.3.1; using the Amount class. ...
1
vote
2answers
769 views

Java Unit conversion

I have a database table which stores the units name in full like liters, kilograms, milliliters, milligrams etc.. I need a library to recogonize these units and convert it to the unit I wish to. How ...
3
votes
1answer
271 views

Strong scientific typing in XML and in Java

My project contains a big XSD Schema, and schema instances are binded to the java code using JAXB. I would like to add strong types into the java code, using JScience, and bind them to XSD types. My ...
1
vote
1answer
291 views

How to fetch the conversion factor for any unit conversion

When you convert between 2 entities, you usually do it via the UnitConverter. How should I find out what the conversion factor is? For example: public static final Unit<Length> KILOMETRE = ...
1
vote
1answer
194 views

How do you write your own custom measurement converters

How do you write your own custom converters and specify the conversion factor using javax.measure packages. (e.g. Pint to gallons)
5
votes
1answer
1k views

Which jsr-275 units implementation should be used?

JSR 275 seems to be in a rejected state. JScience seems to have an implementation and there seems to be unitsofmeasure. Are there any other open source implementations? Which package is jsr-275 ...
0
votes
1answer
198 views

How do I pass kilogram, gram to a kilogram coverter and obtain the result in grams

How do I pass kilogram, gram to a kilogram coverter and obtain the result in grams (e.g. 5 kg 500 grams = 5500 grams) How to do this using javax.measure.* Refer over here Note: I need the solution ...
2
votes
1answer
420 views

Java - JScience define a new unit

I want to define a new distance unit in JScience. The "Tutorial" section of the project website just leads to Javadoc which, while fairly complete, is a bit too dense for me to fathom how I actually ...
16
votes
10answers
22k views

How to convert number to words in java

We currently have a crude mechanism to convert numbers to words (e.g. using a few static arrays) and based on the size of the number translating that into an english text. But we are running into ...
0
votes
1answer
622 views

Parsing mathml document using JScience

I was trying to parse mathml document using JScience but was not succeed. Following is my piece of code. import JSci.io.*; import JSci.mathml.*; . . public class ParsingMathML(){ try { ...
4
votes
3answers
957 views

JSR 275 - Units, Percent per second

I need to represent the unit of Percent per second using the JScience.org's JSR 275 units and measures implementation. I am trying to do to the following: Unit<Dimensionless> ...
1
vote
4answers
200 views

Java methods that look like: public static <F extends Field<F>> DenseVector<F> valueOf(F… elements)…what are they?

So, I'm looking through a java library (JScience) after someone here thoughfully pointed me towards it for getting Vectors (mathematical ones, that is) in java. Unfortunately, I've never seen ...
1
vote
1answer
828 views

How to install JScience library in Eclipse?

Or just any library, in general? I downloaded the bin.zip file, but I can't seem to do much with it? This is driving me up the wall... EDIT: In other words, there is no "standard" way to do it? I ...