Add to Contributors Group

2013-10-31 Thread Axel Schwolow
Hello, please add me (user AxelSchwolow) to the Contributors Group so that I can edit the Commons Wiki pages. Thanks!

Re: [Math] Serializable (again)

2012-05-15 Thread Axel
Hi In my opinion for more advanced uses it makes sense to use tools like Googles protocol-buffers for serialization: http://developers.google.com/protocol-buffers/docs/javatutorial The main advantage is, that you can share data with applications written in C++ or Python. -- Axel Kramer

Re: [Graph] On graph weight type(s)

2012-02-11 Thread Axel
ment.html#reciprocal%28%29 reciprocal instead of inverse and add instead of append? -- Axel Kramer

Re: [Math] Proposal for a set of interoperable interfaces for mathematical structures

2012-01-25 Thread Axel
To extend JAS with the commons-math methods the easiest way is to extend the edu.jas.structure.AbelianGroupElem like this: public interface AbelianGroupElem> extends Element, FieldElement and add the methods: add() and getField() in all derived classes. But there's already an add() meth

Re: [Math] Proposal for a set of interoperable interfaces for mathematical structures

2012-01-22 Thread Axel
On Sat, Jan 21, 2012 at 2:10 PM, Luc Maisonobe wrote: > Le 21/01/2012 13:01, Heinz Kredel a écrit : > > Hi, > > > ... > Could you send us a link to the API rather than links to jars ? > > JAS Javadoc API http://krum.rz.uni-mannheim.de/jas/doc/api/index.html The edu.jas.structure package contains

Re: [math] Support for Abelian Groups and Rings?

2011-10-04 Thread Axel
the JAS type hierachy (see attached jas_hierarchy.png) http://krum.rz.uni-mannheim.de/jas/ this paper gives an overview of the JAS design: http://krum.rz.uni-mannheim.de/kredel/ca-sem-2009.pdf -- Axel Kramer http://code.google.com/p/symja/wiki/UsedLibr

Re: [Math] EigenDecompositionImpl#getEigenvector()

2009-09-19 Thread Axel
aN); (NaN)} -- Axel Kramer http://code.google.com/p/symja - To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org For additional commands, e-mail: dev-h...@commons.apache.org

[Math] EigenDecompositionImpl#getEigenvector()

2009-09-19 Thread Axel
etEigenvector(0); assertEquals(rv0.toString(), "{(NaN); (NaN); (NaN)}"); } but I'm getting only {(NaN); (NaN); (NaN)} as a result vector. Is this intentionally (because of numerical inaccuracy?) or am I doing something wrong in using EigenDecompositionImpl? -- Axel Kramer