登录
首页 » matlab » 阵列天线zip

阵列天线zip

于 2020-06-30 发布
0 359
下载积分: 1 下载次数: 30

代码说明:

说明:  编程计算 线阵组成边射、端射和增强方向性端射阵满足的条件及方向图函数的增益、副瓣电平、半功率波束宽度、零波瓣宽度。(The direction pattern of the side array)

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • matalab--optimization
    最优化理论和算法日益受到重视,已经渗透到各行各业中,并得到了广泛应用(Optimization theory and algorithm have attracted more and more attention, and have penetrated into all walks of life, and have been widely used)
    2017-11-20 16:43:11下载
    积分:1
  • SAR线性调频变标(CS)算法分析与仿真
    说明:  合成孔径雷达线性调频变标(CS)算法分析与仿真(Analysis and Simulation of linear frequency modulation scaling (CS) algorithm for synthetic aperture radar)
    2019-03-08 17:09:11下载
    积分:1
  • VC++ 模拟实现网络语音电话
    VC++ 模拟实现网络语音电话,类似语音聊天的功能,这是一个通过网络实现的网络语音电话,功能目前是比较基础的,仅供学习参考吧。本实例当时在Windows 2000环境下运行通过。相关的代码如下:   #define BUFFERSIZE 5120 //缓冲区大小   static HWAVEIN hWaveIn ; //录音设备句柄   static HWAVEOUT hWaveOut ; //播放设备句柄   static PBYTE pBufferIn[2]; //用于接收和播放的两块缓冲区   static PBYTE pBufferOut[2]; //用于发送和录音的两块缓冲区   static PWAVEHDR pWHIn[2]; //用于录音的PWAVEHDR结构数组   static PWAVEHDR pWHOut[2]; //用于播放的PWAVEHDR结构数组   static WAVEFORMATEX waveform ; //用于打开音频设备的WAVEFORMATEX结构   int nIn = 0; //当前播放缓冲区号   int nOut = 0; //当前录音缓冲区号   int nComState = 1; //显示通话状态信息的变量   CString LocalIP; //本机IP地址   CString RemoteIP; //远端主机IP地址   CServerAS sServer; //服务器套接字   CClientAS sClient; //客户端套接字   CServerAS sListen; //监听套接字   BOOL ConnectDown = FALSE; //“连接”按钮是否被按下   BOOL sState = FALSE; //是否处于服务器端状态   BOOL cState = FALSE; //是否处于客户端状态
    2022-02-14 11:56:52下载
    积分:1
  • use of SolidWorks in the secondary development. Is a standard part of a thread a...
    使用VB对SolidWorks进行的二次开发。主要是建立了一个螺纹标准件库以及螺纹计算方法。-use of SolidWorks in the secondary development. Is a standard part of a thread and the thread is calculated.
    2022-05-28 11:02:32下载
    积分:1
  • Java/JSP万年历编写实例
    Java万年历源码,   TextField tfYear = new TextField("2004", 5); //显示年份的文本域   Choice monthChoice = new Choice(); //月份选择下拉框   Button btUpdate = new Button("更新"); //更新按钮   GregorianCalendar calendar=new GregorianCalendar(); //日历对象   Font smallFont = new Font("TimesRoman", Font.PLAIN, 15); //显示小字体   Font bigFont = new Font("TimesRoman", Font.BOLD, 50); //显示大字体   String days[] = {"星期日", "星期一", "星期二", "星期三","星期四", "星期五", "星期六"};   String months[] = {"一月", "二月", "三月", "四月","五月", "六月", "七月", "八月", "九月","十月", "十一月", "十二月"};   int daysInMonth[] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; //每个月的天数   int searchMonth,searchYear; //查询的年份及月份   public void init(){    setBackground(Color.white); //设置背景颜色    searchMonth = calendar.get(Calendar.MONTH); //得到系统年份    searchYear = calendar.get(Calendar.YEAR); //得到系统月份    add(new Label(" 年:")); //增加组件到Applet    tfYear.setText(String.valueOf(searchYear)); //设置文本域文字    add(tfYear);    add(new Label(" 月:
    2023-03-16 17:35:03下载
    积分:1
  • 讲述了用proel进行电路板设计的具体流程,以及每一步的优化。...
    讲述了用proel进行电路板设计的具体流程,以及每一步的优化。-Proel carried out on the circuit board with the design of specific processes, as well as the optimization of each step.
    2022-06-01 19:31:37下载
    积分:1
  • zzz
    根据颜色初步提取目标,二值化处理,边缘检测,霍夫变换提取目标(According to the color initial extraction, two value processing, edge detection and Hof transform are used to extract the target.)
    2018-06-30 21:14:54下载
    积分:1
  • 这个是一个简单的chat文件,谢谢大家!
    这个是一个简单的chat文件,谢谢大家!-chat
    2023-06-15 11:25:03下载
    积分:1
  • 一个小的工资管理程序
    有几类员工:临时员工、后勤人员、讲师、博导、硕导等,本代码意在管理他们的工资。实现了增删查改存储读取的功能。其中运用到了包括指针,模板,函数重载等内容,当然也有一些诸如清屏等的小技巧。
    2023-06-28 07:45:02下载
    积分:1
  • chinachess
    本文主要研究基于Java 技术的中国象棋游戏的分析与设计,对中国象棋游戏特殊的行棋规则给予了细致的分析与理解,设计出了一种实时可行的行棋规则,从移动范围、移动方向和穿越障碍几个方面重新描述行棋规则,基于Java技术通过计算机模拟实现了中国象棋特殊的行棋规则算法,设计出了一种可行的方法,使每个棋子的行棋路线都严格遵循本身的行棋规则,游戏的实战对弈得以实现,通过实验运行,证明这种限定棋子行棋路线的方法是可行的,并得到了预期的目标(This paper studies the analysis and design of the Chinese chess game based on Java technology, a special line chess rules of Chinese chess game to give the detailed analysis and understanding to design a real-time feasible line chess rules, from the range of movement, direction of movementand through the obstacles to re-describe the line chess regulation)
    2012-04-23 22:29:26下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载