matlab compactibilty
显示 更早的评论
Hello people,
Here is my problem:
I have created jar file in MATLAB and i use this jar file in JAVA (NetBeans).
Here is my function in m-file: (name: matrica.m)
function out = matrica(a)
out = a(:,1) %a is matrix
end
Here is my code in JAVA:
import com.mat.*;
import com.mathworks.toolbox.javabuilder.*;
public class KlasaMat {
/**
* @param args the command line arguments
*/
public static void main(String[] args) throws MWException {
int matrica[][] = new int[3][3];
matrica[0][0] = 1;
matrica[0][1] = 2;
matrica[0][2] = 3;
matrica[1][0] = 4;
matrica[1][1] = 5;
matrica[1][2] = 6;
matrica[2][0] = 7;
matrica[2][1] = 8;
matrica[2][2] = 9;
KlasaMatlab k = null;
k = new KlasaMatlab();
Object[] matrica1 = k.matrica(1, matrica);
System.out.println(matrica1[0]);
}
}
But always get an error like this:
{??? Error using ==> matrica
Too many input arguments.
}
Exception in thread "main" ... Matlab M-code Stack Trace ...
com.mathworks.toolbox.javabuilder.MWException: Error using ==> matrica
Too many input arguments.
at com.mathworks.toolbox.javabuilder.internal.MWMCR.mclFeval(Native Method)
at com.mathworks.toolbox.javabuilder.internal.MWMCR.access$600(MWMCR.java:25)
at com.mathworks.toolbox.javabuilder.internal.MWMCR$6.mclFeval(MWMCR.java:918)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at com.mathworks.toolbox.javabuilder.internal.MWMCR$5.invoke(MWMCR.java:816)
at $Proxy0.mclFeval(Unknown Source)
at com.mathworks.toolbox.javabuilder.internal.MWMCR.invoke(MWMCR.java:492)
at com.mat.KlasaMatlab.matrica(KlasaMatlab.java:195)
at KlasaMat.main(KlasaMat.java:37)
Java Result: 1
BUILD SUCCESSFUL (total time: 6 seconds)
What to do?
8 个评论
Aldin
2012-3-14
Aldin
2012-3-14
Oleg Komarov
2012-3-14
You're assuming knowledge of JAVA, try to ask on StackOverflow.
Aldin
2012-3-14
Walter Roberson
2012-3-14
Yes, it IS possible that no-one knows the answer. I have not yet encountered anyone who is an expert on _everything_ to do with computer programming.
What is even more likely is that no-one who knows the answer happened to be awake and active on MATLAB Answers at the time you posted, which was 7 AM in the time-zone I live in. Most of North America switched to Daylight Savings Time on Sunday, so our bodies are still telling us that that was 6 AM.
Please keep your messages respectful.
Aldin
2012-3-14
Walter Roberson
2012-3-14
Everyone who answers questions here is a volunteer, answering in their spare time (except when Helen or Ned post official statements.) Relatively few of the volunteers here happen to work for MathWorks, and of those who do, the ones who are developers happen to be mostly on the Simulink side it appears.
The Active volunteers are mostly in Western Europe, or Eastern North America, with a small number of outliers (e.g., Central North America). The largest portion of answers by far comes from a fairly small number of individual volunteers. There are no "shifts" or the like, nor has anything like that ever been attempted, and the population of active volunteers is too small for anything like that to be practical. About 7 active volunteers on average are handling 80% of the questions from the 56500 forum members.
Aldin
2012-3-14
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Java Client Programming 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!