* @param m the moneyness. value moneyness mv = F(t,T)/F(0,T), and strike moneyness mk = k/F(0,T) where k is the strike
* and F(t, T) is the value of the forward for expiry at time T at time t.
* @return The local volatility
*/
public double getVolatilityForMoneyness(final double t, final double m) {
final Moneyness s = new Moneyness(m);
return getVolatility(t, s);
}