搜索结果
找到约 628 项符合
Y-combinator 的查询结果
压缩解压 图形学消隐实验
图形学消隐实验,*方案1上下旋转,只显示可见面,函数说明:void Project(float X,float Y,float Z)
功能:根据透视或平行投影将三维点进行投影变换
入口参数:float X,float Y,float Z
返回参数:无(void)
电子书籍 ST7 Visual Develop for ST7 Assembler Toolset Users integrated development environment that allows y
ST7 Visual Develop for ST7 Assembler Toolset Users
integrated development environment that allows you to build, debug and program applications for ST7 microcontrollers.
交通/航空行业 VC+MO最短路径算法 // 计算线的几何长度 double CalcLength() // 通过线的id得到线数据 BOOL GetLineData(int id) // 得到距
VC+MO最短路径算法 // 计算线的几何长度
double CalcLength()
// 通过线的id得到线数据
BOOL GetLineData(int id)
// 得到距离某点最近的线段,返回该线段的id
int GetNearestLineData( double x, double y)
// 判断两点是否重合
BOOL IsPtCoincide( NetPoint ptFirst, NetPoint ptSecond )
// 得到最邻近的点 ...
电子书籍 图像平移只是改变图像在屏幕上的位置
图像平移只是改变图像在屏幕上的位置,图像本身并不发生变化。
假设原图像区域左上角坐标为(x0, y0),右下角坐标为(x1, y1),将图像分别沿x和y轴平移dx和dy,则新图像的左上角坐标为(x0 + dx, y0 + dy),右下角坐标为(x1 + dx, y1 + dy)。 ...
matlab例程 support vector classification machine % soft margin % uses "kernel.m" % % xtrain: (Ltrain,N) wit
support vector classification machine
% soft margin
% uses "kernel.m"
%
% xtrain: (Ltrain,N) with Ltrain: number of points N: dimension
% ytrain: (Ltrain,1) containing class labels (-1 or +1)
% xrun: (Lrun,N) with Lrun: number of points N: dimension
% atrain: alpha coefficients (from svcm_tra ...
嵌入式Linux LCD and Keyboard ARMulator model for the ADS Source Code Copy the provided ARMulate folder into y
LCD and Keyboard ARMulator model for the ADS Source Code
Copy the provided ARMulate folder into your ADS directory tree
at the root, for example in c:\ADSv1_1. If prompted to
overwrite files, choose Yes.
The batch file copy_console.bat will place the appropriate
files inside the \Bin directory s ...
书籍源码 同一个数会由于采用不同的基数而使得其表现的形式是完全不一样的
同一个数会由于采用不同的基数而使得其表现的形式是完全不一样的,在我们的学习中,我们熟悉的基数有10进制、12进制、60进制、2进制、8进制和16进制。比如数据12,如果我们用2进制表示,则它就是1100;如果用3进制表示就是110;如果用8进制表示则是14。我们的编程任务就是与数的进制(也就是基数)有关。
程序中我们会给 ...
数据结构 自定义一个简单的日期类DateType
自定义一个简单的日期类DateType,它具有数据成员y、m、d,用来表示当前日期的年、月、日。而后设计该类欲实现(完成)的功能,进而设计出相应的类成员函数。
例如,下面给出的“雏形”可用来实现对天的增加,比较两个日期是否相等,以及对日期的输出等操作。请完成各类成员函数,并编制主函数,说明DateType类对象,对定 ...
uCOS 当手指或笔触摸屏幕时
当手指或笔触摸屏幕时,平常相互绝缘的两层导电层就在触摸
点位置有了一个接触,因其中一面导电层接通X轴方向的5V均匀电压场(图a)
,使得检测层的电压由零变为非零,控制器侦测到这个接通后,进行A/D转换
,并将得到的电压值与5V相比即可得触摸点的X轴坐标为(原点在靠近接地点
的那端):Xi=Lx*Vi / V(即分压原理)同理 ...
软件设计/软件工程 这是描述三次方结尾问题的原程序即给定以数字1
这是描述三次方结尾问题的原程序即给定以数字1,3,7,9 为结尾的正整数x,试求一个十进制位数不超过x 的十进制位
数的正整数y使得x恰为y3的结尾数字。