Questions tagged [matlab-java]

The MATLAB-Java API provides access to MATLAB's internal Java classes, allowing additional ways to customize and interact with the MATLAB environment and application GUI.

The Java interpreter can be used via MATLAB commands to create, access and use Java objects.

Books

More information:

21 questions
0
votes
1 answer

Matlab Compiler Runtime is unable to launch a function from signal processing toolbox

I am using a function called "findpeaks" from signal processing toolbox in my source code. The source code is then packed into a jar file to be launched from Java on a different machine. Java invokes MRC to perform its execution which ends with…
Amrit Gill
  • 789
  • 2
  • 6
  • 11
0
votes
0 answers

Matlab stdout and stderr?

I can create standard output and standard error in Matlab using: fprintf(1, "This is output"); and fprintf(2, "This is an error"); Question: How can I collect those logs (streams) from Matlab using Java without saving them in an intermidiate log…
Amritbir Singh Gill
  • 366
  • 1
  • 3
  • 12
0
votes
0 answers

Can't open file from list of file names when index exceeds a certain value when using matlab

I'm trying to extract .xml files from a .zip containing 60000+ .xml files without having to actually extract the archive. Each .xml file has the following naming format HMDB#.xml with a 5 digit number replacing the #. Each .xml file is around 25kb…
Clanrat
  • 43
  • 7
0
votes
0 answers

Calling Java from Matlab is very slow

I'm calling a jar file from Matlab using the system function. Like this: system('java -jar myfile.jar') When I run the jar file directly through CLI it runs like a charm in less than 1min. When I call it from Matlab using the system function,…
Dr. No
  • 156
  • 1
  • 7
0
votes
1 answer

MATLAB JA Builder

When I run the program in Netbean, it shows the following message. What can I do to solve this problem? Exception in thread "AWT-EventQueue-0" java.lang.UnsatisfiedLinkError: Failed to find the library mclmcrrt7_17.dll, required by MATLAB …
LSY
  • 11
  • 2
-1
votes
1 answer

How can I process a sound signal using matlab, get the frequencies and use it on java?

I'm new to signal processing and i'm developing an application that involves extracting pitch of a sound playing wav file, tried a few approaches to directly extract pitch using java (using FFT and DFT) however, it was not possible to go on with it…
dav191
  • 75
  • 2
  • 7
1
2