convert elements of cell array/struct array to Java primitive data types

1 view (last 30 days)
Hi,
I am trying to convert the returned objects when a matlab function is called from Java. If it is numeric array ob.asInstanceOf[MWNumericArray].toArray().asInstanceOf[Array[Array[Double]]] works fine. When it is a cell array or struct array, I can access each element using get() or getField(). They return an object. I want to convert these objects to appropriate Java primitive data types - int, char, numeric array etc. Any ideas about how to find the type of the object(which is a single element of cell array) and how to convert it. The whole idea is to represent cell array as array of elements(an element can be int, char, array etc) and struct array as array of arrays. Please post your suggestions/thoughts. Thank you!

Answers (1)

Mihir Daptardar
Mihir Daptardar on 17 Jan 2014
If you want to find the type of the object in Java, you can use the following code snippet:
ArrayList<Object> list = new ArrayList<Object>(); // This would contain the list
for (Object object : list) {
System.out.println(object.getClass().getName());
}

Categories

Find more on Java Package Integration in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!