mindelec.vision.plot_eh
- mindelec.vision.plot_eh(simu_res_tensor, path_image_save, z_index, dpi=300)[源代码]
为二维切片绘制每个时间点的电场和磁场值,并将其保存在 path_image_save 中。
- 参数:
simu_res_tensor (numpy.ndarray) - 模拟结果。shape为 (dim_t, dim_x, dim_y, dim_z, 6)。
path_image_save (str) - 图像保存路径。
z_index (int) - 显示z=z_index的2D图像。
dpi (int) - 图形每英寸的点数。默认值:300。
- 支持平台:
Ascend
样例:
>>> import numpy as np >>> from mindelec.vision import plot_eh >>> simu_res_tensor = np.random.rand(20, 10, 10, 10, 6).astype(np.float32) >>> path_image_save = './result_eh' >>> z_index = 5 >>> dpi = 300 >>> plot_eh(simu_res_tensor, path_image_save, z_index, dpi)