-
vg
说明: vg法求颤振,可以求得机翼的颤振速度,提供参考(vg method the chatter, you can obtain the flutter speed reference)
- 2015-05-29 18:36:29下载
- 积分:1
-
实验4 非周期信号的傅里叶变换
说明: 矩形脉冲信号傅里叶变换
非周期信号傅里叶变换(Fourier transform of rectangular pulse signal)
- 2020-03-17 10:36:59下载
- 积分:1
-
Sundance FPGA Acquisition Card Code
Sundance FPGA 采集卡 Code-Sundance FPGA Acquisition Card Code
- 2022-03-05 09:17:32下载
- 积分:1
-
无线定位基本算法TDOA TOA AOA
超宽带(UWB)定位技术算法程序,仅供参考(Ultra wideband positioning technology algorithm program, for reference only.)
- 2018-10-15 23:40:38下载
- 积分:1
-
ACKERMAN-STEERING-MECHANISM
说明: The intention of Ackermann geometry is to avoid the need for tyres to slip sideways when following the path around a curve. The geometrical solution to this is for all wheels to have their axles arranged as radii of circles with a common centre point. As the rear wheels are fixed, this centre point must be on a line extended from the rear axle.
- 2020-06-20 15:40:01下载
- 积分:1
-
网线的制作方法,很实用,经常碰到,希望大家看看,学习学习。...
网线的制作方法,很实用,经常碰到,希望大家看看,学习学习。-net line production method, it is very practical, often meet, we hope to see, study, study.
- 2023-04-12 13:50:03下载
- 积分:1
-
图标提取器源码
非常管用.大家试试,多多支持
图标提取器源码
非常管用.大家试试,多多支持-very useful source. We try and show more support!
- 2023-04-16 08:10:03下载
- 积分:1
-
plydy
说明: matlab实现PLY点云重建并生成同名TXT点云数据文件,特别好用!!!附带斯坦福兔子(MATLAB realizes the reconstruction of ply point cloud and generates the data file of TXT point cloud with the same name)
- 2020-01-11 20:33:37下载
- 积分:1
-
C# 泛型列表List用法示例
C# 泛型列表List用法示例,从给出的人员名单中,过滤人员名称中以"科"结束的序列,遍历查询结果。
private void Frm_Main_Load(object sender, EventArgs e)
{
List People = new List{//创建人员列表
new Person(1,"王*科"),
new Person(2,"王*科"),
new Person(3,"赵*东")};
var query = from p in People//过滤人员名称中以"科"结束的序列
where p.Name.EndsWith("科")
select new
{
人员ID = p.ID,
人员姓名 = p.Name
};
foreach (var item in query)//遍历查询结果
{
label1.Text += item + "
";
}
}
}
public class Person
{
public Person(int id, string name)
{
this.ID = id;
this.Name = name;
}
public int ID { get; set; }//人员ID
public string Name { get; set; }//人员姓名
}
- 2023-01-08 20:45:03下载
- 积分:1
-
约瑟夫环,用顺序表实现的,也是可以用链表实现的
约瑟夫环,用顺序表实现的,也是可以用链表实现的-Joseph Wan, the implementation of the order form, but also can realize the list
- 2022-03-22 00:51:13下载
- 积分:1