필터 지우기
필터 지우기

Need help with Java Class in Matlab in windows 10

조회 수: 6 (최근 30일)
JimTal
JimTal 2020년 6월 4일
편집: Ajith Krishna Kanduri 2020년 6월 19일
I have studied examples and had success with the java class example "HelloWorld" but have not been able to get the Addnumber example shown to work. This example was located on this site. Based on post I created a java class as shown below.
package numberpack;
public class Addnumber
{
public double add2num( double a1,double a2)
{
return a1+a2;
}
}
I compiled the class and in matlab used:
obj = numberpack.Addnumber
to access the object but get the message: "Unable to resolve the name numberpack.Addnumber."
My path to the class is valid as it is in the file classpath.txt.

답변 (1개)

Ajith Krishna Kanduri
Ajith Krishna Kanduri 2020년 6월 19일
편집: Ajith Krishna Kanduri 2020년 6월 19일
Hi,
Please try using () parenthesis for creating the object.
obj = numberpack.Addnumber()
Please refer to the following discussion thread for the reference
Hope this helps in resolving the issue.

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

태그

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by