public interface FunctionRnRn{
   
    /**
     *returns the value 
     *f(x)=y
     */
    public Vektor f(Vektor x);

    /**
     *returns the value fp(x)=y
     *...
     */
    public QuadMatrix fp(Vektor x);

    
}
