input argument is undefined

1 view (last 30 days)
Aim
Aim on 23 Jul 2013
I tried to use FIS combine with java
the code in matlab;
function out = myFuzz(x,y,z,a)
fismat =readfis('FIS1.fis');
out=evalfis ([x y z a],fismat);
code in java;
Object[] test = null;
Heart x = null;
Object[] result = null;
x = new Heart();
result = x.myFuzz(1,15,115,95);
System.out.println(result[0]);
i got error;
??? Input argument "a" is undefined.
Error in ==> myFuzz at 3
How to fix this?
  1 Comment
dpb
dpb on 23 Jul 2013
Any chance you've got an earlier version of myFuzz() around and didn't save the last edits or somesuch?
Add some debugging statements or set a breakpoint???

Sign in to comment.

Answers (0)

Categories

Find more on Deployment in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!