Include fft.m in Java Project
Mostra commenti meno recenti
Hello everyone!
I have a matlab function (let's call it mfun) which calls the fft. I use this mfun in Java code, through a class created by Matlab builder JA (R2010a), but I get a java error "Undefined function or method 'fft' for input arguments of type 'int32'". I guess that Java cannot access to the fft function, the .jar file only has one class with this mfun. So, how can I include fft in the .jar?
Thanks!
Risposta accettata
Più risposte (2)
Rick Rosson
il 31 Ago 2011
I think the easiest thing to do would be to modify the MATLAB source code for the time2rms function, and then re-deploy using the MATLAB Compiler and Builder JA.
There are two ways to modify the MATLAB code:
- Check the input arguments at the very beginning of the function to see if they are floating point. If not, coerce them right then and there, OR
- Find each instance where the function calls fft, and coerce the input argument at each call site.
To accomplish #1, you would need to use the isa function:
if ~( isa(x,'double') || isa(x,'single') )
x = double(x)
end
I am not sure which way is better, but both should work.
HTH.
Rick
1 Commento
Frank Gomez
il 5 Set 2011
Categorie
Scopri di più su Call Java from MATLAB in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!