初めに、「【Python】等高線の表示」でも使った、以下の2変数関数を定義する。 import numpy as np import matplotlib.pyplot as plt %matplotlib inline def f3(x0,x1): ans = (2 * x0**2 + x1**2) * np.exp(-(2 * x0**2 + x1**2)) return ans ...