This guide is to assist developers write code in camino/apps compatible with the Matlab interface.
The generic structure of the code should be as follows
public class X extends Executable{
private static Logger logger = Logger.getLogger("camino.apps.X");
public X(String[] args){
super(args);
}
public void initDefaultVals(){
}
public void initOptions(String[] args){
}
public void initVariables(){
}
public void execute(OutputManager om){
}
|