Can you suggest any idea on how to program agent-based ontologies in Matlab that can later on feed a soft computing model (i.e neural network, fuzzy logic system)? Please refer any practical example that you might know.
I'm not aware of any toolbox specifically oriented to ontology management. However, depending on your needs, you can always program the ontological part of the system using Java (and the OWL API for example), and then use the Java interface provided by Matlab.
Hi a good starting point would be Protege - an open source Java based ontology editor.
The good thing is you can use Protege's GUI to develop your ontology without knowing any coding. However in the backend Protege will generate the code for you (in Java) and then you can export the code and reuse or modify in some other application.
MATLAB provides a JAVA wrapper class facility to run your Java program in MATLAB environment. However I don't have much experience with it. But what you can do is, once you generate your code in Protege you can implement WEKA machine learning API in your Java project and integrate the ontology with your machine learning model.
have you find a way to work with ontologies in Matlab? I working on a project which is related to ontology and I am using protege. My ontology model is based on decision tree which I am going to make in MATLAB, that's why no looking for a way to model the ontology also in MATLAB.