FDTD代码学习-1

#####################################################################

File: LIDAR2_analysis.lsf

Description: Performs analysis on the antenna array, creates

results to be used in INTERCONNECT compact model, visualizes the far field data,

and saves the far field angular distribution for subsequent analysis in both Lumerical

and Matlab.

Copyright 2018 Lumerical Inc.

######################################################################

set the name of the monitor for far field projections将监视器重新命名

mname = "above";

######################################################################

plot transmission into glass superstrate#绘制反射率曲线

######################################################################

T = getresult(mname,"T");#提取监视器mname中的T数据

plot(T.lambda*1e9,T.T,"wavelength (nm)","T","Transmission to glass superstrate");#绘图:plot(A,B,C,D,E):A,B为横纵坐标数据,C,D为横纵坐标的题目,E为图表的标题

setplot("show legend",false);#false为不显示图例,多条曲线,可以设置为true

相关推荐
im_AMBER3 小时前
Leetcode 74 K 和数对的最大数目
数据结构·笔记·学习·算法·leetcode
DBA小马哥3 小时前
Oracle迁移实战:如何轻松跨越异构数据库的学习与技术壁垒
数据库·学习·oracle·信创·国产化平替
t198751283 小时前
电力系统经典节点系统潮流计算MATLAB实现
人工智能·算法·matlab
断剑zou天涯3 小时前
【算法笔记】蓄水池算法
笔记·算法
【上下求索】4 小时前
学习笔记095——Ubuntu 安装 lrzsz 服务?
运维·笔记·学习·ubuntu
长安er4 小时前
LeetCode 206/92/25 链表翻转问题-“盒子-标签-纸条模型”
java·数据结构·算法·leetcode·链表·链表翻转
唯道行4 小时前
计算机图形学·23 Weiler-Athenton多边形裁剪算法
算法·计算机视觉·几何学·计算机图形学·opengl
CoderYanger4 小时前
动态规划算法-01背包问题:50.分割等和子集
java·算法·leetcode·动态规划·1024程序员节
花月C4 小时前
个性化推荐:基于用户的协同过滤算法
开发语言·后端·算法·近邻算法
lxh01134 小时前
最长递增子序列
前端·数据结构·算法