Recent Changes - Search:

Homepage

This is the old Camino website, please visit our new page to download the code and get the latest documentation.









UCL MIG Home

UCL CS Home

UCL Home

edit SideBar

Dev /

Guide

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){

    }

Edit - History - Print - Recent Changes - Search
Page last modified on September 16, 2009, at 03:02 PM