From b0aa45366b9a5e911f71276378472cb3bc41b8b3 Mon Sep 17 00:00:00 2001 From: Gitea Date: Tue, 21 Feb 2023 19:26:53 -0800 Subject: [PATCH] better axis label --- examples/fdfd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/fdfd.py b/examples/fdfd.py index 3fe895f..367fb70 100644 --- a/examples/fdfd.py +++ b/examples/fdfd.py @@ -193,7 +193,7 @@ def test1(solver=generic_solver): pyplot.subplot(2, 2, 2) pyplot.plot(numpy.log10(numpy.abs(E[1][:, center[1], center[2]]) + 1e-10)) pyplot.grid(alpha=0.6) - pyplot.ylabel('log10 of field') + pyplot.ylabel('log10 of Ey @ centerline') pyplot.subplot(2, 2, 3) pcolor(numpy.real(E[1][:, :, center[2]]).T) pyplot.subplot(2, 2, 4)