using System;
using System.Collections.Generic;
using System.Text;

namespace RungeKutta.Derivator
{
    class MeanValueTheoremStep
    {
        public static float Derivate(float y1, float x1, float y2, float x2)
        {
            return (y2 - y1) / (x2 - x1);
        }
    }
}