-
ex1
说明: UFLDL教程中关于如何实现向量化逻辑回归的matlab的代码(Realization of quantitative logistic regression)
- 2020-06-21 22:39:24下载
- 积分:1
-
Flash文字旋转 转动的字符
Flash文字旋转 转动的字符,旋转速度非常快,以致于变成了一个圆球,呵呵,自己下载Flash源码研究吧。
- 2022-01-23 10:16:27下载
- 积分:1
-
coreincwfwfw
说明: #include "Rect2.hpp"
#include "String.hpp"
#include "Transform2D.hpp"
#include "Vector2.hpp"
#include
namespace godot {
#ifndef MAX
- 2020-06-19 15:00:01下载
- 积分:1
-
MonitorPhone
Android程序,对手机情况监控的程序。(Android program, the mobile phone monitoring procedures.)
- 2017-08-03 08:44:22下载
- 积分:1
-
main
说明: 介绍main函数的执行动作和入口形式。先是配置中断向量,再是配置时钟,然后是配置GPIO、串口等外设。(This paper introduces the execution action and entry form of main function. Firstly, the interrupt vector is configured, then the clock is configured, and then the peripherals such as GPIO and serial port are configured.)
- 2020-06-17 11:40:02下载
- 积分:1
-
采用vc对pro/engineer 进行二次开发时,vc环境的设置示例.
采用vc对pro/engineer 进行二次开发时,vc环境的设置示例.-Using vc on pro/engineer to carry out when the second development, vc sample the environment settings.
- 2022-10-28 21:15:03下载
- 积分:1
-
C#不规则窗口示例
C#不规则窗口示例,用Visual C#制作一个异形的多边形窗体,把窗体的标题栏给削掉了,边框也不见了,在一本C#书中发现的例子,把代码还原了,觉得对窗体制作有帮助吧。
- 2023-08-09 10:55:03下载
- 积分:1
-
slider
对曲柄滑块机构的动力学分析(包含各点的受力及滑块的速度和加速度线图)(Dynamic analysis of crank connecting rod mechanism)
- 2020-11-09 10:29:47下载
- 积分:1
-
opencbm-0.4.99.99
说明: More files to upload to the server
- 2020-05-04 08:35:08下载
- 积分: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