-
ch05
matlab学习资料
matlab自学资料
matlab
- 2010-05-14 20:42:30下载
- 积分:1
-
Sensitivity-analysis-
在数学建模比赛中要获得好的分数,最好都要进行灵敏度分析。本文件中包含详细的matlab灵敏度分析程序,只要通过修改相关参数即可。(In mathematical modeling competition to get a good score, the best sensitivity analysis should be carried out. This document contains a detailed sensitivity analysis matlab program, simply by modifying the relevant parameters.)
- 2014-11-19 10:50:13下载
- 积分:1
-
同步电机滑模和协同
可以放入电机模型,直接运行,改变参数比较方便(Can be put into the motor model, direct operation, change the parameters more convenient)
- 2021-04-29 11:38:42下载
- 积分:1
-
c#FORM服务器客户端UDP通讯实例
服务器客户端UDP广播通话 【核心代码】using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Net.Sockets;using System.Net;namespace NetServer{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button2_Click(object sender, EventArgs e) { this.Close(); } private void Form1_Load(object sender, EventArgs e) { } private void button1_Click(object sender, EventArgs e) { //使用UDP协议发送数据 Socket socket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp); //设置端口号 IPEndPoint ieps = new IPEndPoint(IPAddress.Broadcast, 8900); socket.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.Broadcast, 1); //将发送数据转换为字节数组 byte[] bytess = System.Text.Encoding.Unicode.GetBytes(textBox1.Text); socket.SendTo(bytess, ieps); socket.Close(); } }}
- 2020-05-31下载
- 积分:1
-
radar_chirp
自己用编写的雷达线性调频信号产生器,信号幅度为-1~1,其中另外的一些参数可以根据需要改动(themselves with the preparation of the linear FM radar signal generator, the signal amplitude ~ 1-1, which some other parameters can be changed as needed)
- 2020-09-29 10:07:44下载
- 积分:1
-
E2Q2E
欧拉角和四元数的转换:输入偶欧拉角,按Rechnen,程序会自动将欧拉角转换为四元数,再得出最终的方位。(Euler angles and quaternion conversion: input dual Euler angles, press Rechnen, the program will automatically Euler angles conversion quaternion, and then come to the final orientation.)
- 2012-09-17 21:30:30下载
- 积分:1
-
OpenGLDemo
使用OpenGL显示obj文件,使用GLM可以将obj文件进行解析,之后使用OpenGL中的绘画功能将obj文件中的点线面进行描绘(Use OpenGL display obj file, you can use the GLM obj file is parsed, then use OpenGL drawing functions in the obj file depicted point line)
- 2016-04-11 16:12:45下载
- 积分:1
-
socket
TCP CS 模式文件传输可以下载和上传文件,也可浏览服务器端文件(TCP CS file transportation)
- 2010-11-08 21:48:17下载
- 积分:1
-
SP
针对于Win8.1的串口调试助手(WPfban)(Serialport win8.1)
- 2015-01-11 13:41:48下载
- 积分:1
-
matlabprog
matlab实例编程一百个源程序,里面含有matlab图像处理的基本算法(example of matlab programming source 100, which contains the basic matlab image processing algorithm)
- 2009-05-15 20:14:45下载
- 积分:1