How to pass a 3d array double[][][] from java to a Matlab function

1 vue (au cours des 30 derniers jours)
Felipe Reis
Felipe Reis le 17 Août 2018
Commenté : James Tursa le 23 Août 2018
I have a matlab function inside a jar package which is supposed to receive from my java class a double[][][]. Due the difference in the way java and matlab understand array structures when the array arrives to the matlab side it is messed.
Is there a way to convert java 3d array so then each dimension can be read like: (:,:,1) (:,:,2) and (:,:,3) in the matlab function?

Réponse acceptée

James Tursa
James Tursa le 17 Août 2018
As long as it arrives as a 3D variable but the dimensions seem backwards, perhaps you only need to permute it. E.g.,
x = 3D array from your java
x = permute(x,[3 2 1]); % permute to MATLAB memory ordering
  2 commentaires
Felipe Reis
Felipe Reis le 21 Août 2018
@James thanks for your answer. It was the right start to achieve what I wanted. In my case I had to work it out like this: DS is my java double[][][] and from matlab i would like to access each chunk of data like
DS(:,:,indexchunkofdata)
and have a NxM matrix as result so i did:
PDS = permute(DS,[3 2 1])
ChunkOfData = PDS(:,:,indexChunkOfData)
ChunkOfData = ChunkOfData'
So it's kind of the last dimension after the permutation still needed some transpose to invert what was column into lines and vice-versa. Also a side comment is that after the permute new zeros columns where added to the last dimension!? Still don't know the reason. Any insight?
Thanks again
James Tursa
James Tursa le 23 Août 2018
Try permute(DS,[2 3 1]) to get rid of that extra transpose at the end.
The permute function does not add any elements to the input array. So if you are getting extra 0's they are there before the permute operation.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Java Package Integration dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by