Hi! @YaChienChang
I was checking your amazing work and approach! However, when plotting the level sets of the Lyapunov functions, why do you substract some values from the NN and LQR approach?
ax.contour(X, Y, V-0.11, 0, linewidths=2, colors='k')ax.contour(X, Y, V_lqr-2.6, 0, linewidths=2, colors='m',linestyles='--')ax.contour(X, Y, V_SOS, 0, linewidths=2, colors='b')
Here, why do you substract V-0.11 or V_lqr-2.6?
I'd really appreciate if you can give me some light in here! Thank you!
Hi @camontblanc,
In the example, ax.contour(X, Y, V-0.11, 0, linewidths=2, colors='k') plots one level curve (V(x,y) = 0.11) of the Lyapunov function V.
Hi! @YaChienChang I was checking your amazing work and approach! However, when plotting the level sets of the Lyapunov functions, why do you substract some values from the NN and LQR approach?
ax.contour(X, Y, V-0.11, 0, linewidths=2, colors='k')
ax.contour(X, Y, V_lqr-2.6, 0, linewidths=2, colors='m',linestyles='--')
ax.contour(X, Y, V_SOS, 0, linewidths=2, colors='b')
Here, why do you substract
V-0.11
orV_lqr-2.6
?I'd really appreciate if you can give me some light in here! Thank you!