How do you create an octave toolbox? [closed] - java

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I have created my own java library but now I want to create my own octave toolbox.
How do I get started on this.
Is there a hello world tutorial on how to create a toolbox in octave?
Thanks

There's 2 main documents about it. The official manual and the one for Octave Forge (they kind of overlap). Seems to me your code will be dependent on the java package. However, this package was merged into Octave core a few weeks ago and has been suffering a lot of changes there. You may want to test your package with the development sources.
Note however that octave packages that are simple wrapper around java libraries are likely to be frowned upon.

Related

Which API Should I use to log in java [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I am building a mid-sized standalone console based java application and I must log various events that can take place. I am not sure about which API to use. I have looked upon Logback Project and log4j. I am concerned if these are the right one, since both of the seem to have extensive uses in the web application projects. Please help me decide if I am better using the default java.util.logging API or should I use another frameworks; if so which one.
Thanks!
I recommend slf4j.(it's written by the same guy who did log4j) You can read more from here

Looking for open source icon library [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
For a java project I am working on, I'm looking for a decent open source library of icons to use in the GUI.
I've found several libraries via Google searches, and have not yet found the icon that is 'just right'. I'm interested in any that other developers use, before I start pulling them into my code.
My advise is to try looking at icons for webdesigners, you will get much more results:
http://www.webdesigncore.com/2012/03/09/20-free-gui-icon-sets-for-web-designers/
http://www.hongkiat.com/blog/40-free-and-useful-gui-icon-sets-for-web-designers/
http://ionicons.com
Or obviously the search engines:
http://www.freeiconsweb.com
http://www.iconfinder.com/free_icons
Also, you might prefer building your own font with vector icons:
https://icomoon.io
Hope this helps

Recommend a Java Graphics API for this application idea [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I want to make a tool for creating FSM control circuit simulations. NB! not the ALU part.
Can anyone recommend a good Java API with as much functionality already available as possible? Itll basically be something like a graphical modelling language editor.
The user should be able to make and run stuff like this:
There are a number of Java libraries out there for visualizing graphs. Some that I hear mentioned a lot include:
JUNG
jGraph
GraphVis and Grappa
The following blog has a pretty extensive list of options with commentary and screenshots: http://s6ai.livejournal.com/33969.html

Can anybody please recommend me a good library to apply machine learning in java/scala? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
I am trying to implement machines learning in java or scala environment. Can anybody please recommend me a good library to study and use?
So far, the algorithm that I am going to use will be logistic regression and SVN.
Thanks
Have a look at scala0-recog or if you want a big toolbox then try scalaNLP
There is also a lib build on top of hadoop called Mahout that might help you. It has use cases in distributed computing and parallelization. Hth

readline-like library for Java [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
Which readline-like library for Java do you use? By 'readline' like library I mean library for editing console input, with support for history, tab-completion, and stuff like this. I'm looking for one, and I cannot choose from so many choices (jLine -- unmaintained, java-readline -- last release on 2003, others?)
I've used JLine to add history, etc. to a Clojure REPL (JVM process) when executed from the command line. It just magically worked and worked well, so I never bothered to investigate anything else.
jruby has an internal readline you could probably call out to.

Categories

Resources