搜索资源列表
用c编写的N*N的螺旋矩阵源代码
- /* 实现效果: 1 2 6 7 15 3 5 8 14 16 4 9 13 17 22 10 12 18 21 23 11 19 20 24 25 */ #include <stdio.h> #define N 5 //阶数,即N*N的螺旋矩阵 void main() { int i, j, num=1, a[N][N]; for(i=0; i<=N/2; i++) &nb
快捷键的设置
- 键盘快捷键的设置,并窗口随着鼠标的移动所产生的X,Y的变化程序代码-keyboard settings, mouse and window with the movement of the X, Y code changes
XYMoQiu
- 鼠标x-y原理与绘图, (1)CButton 显示ico/bmp, (2)多个按钮共享MessageHandler GetDlgItem,SetIcon,MoveTo/LineTo -mouse x-y Principle and Mapping, (1) CButton show ico / bmp, (2) various buttons sharing MessageHandler GetDlgItem, SetIcon, MoveTo / LineTo
906求一元线形回归方程及预报
- 906 求一元线形回归方程及预报 一 功能 x为自变量,y为随机变量,给出一组n次观测值(Xi, Yi), I=1, 2, … n, 求线形回归方程 Y=A+BX 来描述Y与X的变化规律。并用T检验法检验线形回归是否显著。若显著,可用求得的线形回归方程作预报,并给出预报值的置信区间。 -906 for one yuan linear regression equation and forecast a function of the variable x, y as ran
3txt
- 相关方法: PictureBox.point(x,y)得到(x,y)点的RGB值 PictureBox.PSet(x,y) z: 设置(x,y)点的颜色为z颜色 不过这里的picture Load进来后要进行转换,因为不是按照像素值来进行的。 -correlation method : PictureBox.point (x, y) be (x, y) of the RGB values PictureBox.PSet (x, y) z : Setting up the
经过扩展的CGraph类及示例工程源代码
- 作者将一个CGraph类由像素模式下,扩展到逻辑模式下,并加了x,y轴的箭头,可以添加曲线名称。使用的方法: 复制Graph.h,Graph.cpp GraphLegend.cpp.GraphLegend.h GraphSeries.cpp,GraphSeries.h六个文件到相应的目录下,然后把他们加入到工程中,修改相应的头文件。在示例工程中作者提供了绘制饼图和直方图的代码。-CGraph author of a category by the pixel mode, the logica
the_ th
- 枚举法(穷举法) “笨人之法”: 把所有可能的情况一一测试,筛选出符合条件的各种结果进行输出。 【例一】百元买百鸡:用一百元钱买一百只鸡。已知公鸡5元/只,母鸡3元/只,小鸡1元/3只。 分析: 这是个不定方程——三元一次方程组问题(三个变量,两个方程) x+y+z=100 5x+3y+z/3=100 设公鸡为x-enumeration method (exhaustive) "Benren Regulation" : all po
kitty
- 一. 追踪模型 以(x , y)代表飞机的坐标,v代表飞机的速度;以(X ,Y)代表导弹的坐标,u代表导弹的速度。 由于导弹时刻指向飞机,故有 dY/dX=(y-Y)/(x-X) 记k=u/sqrt((y-Y)*(y-Y)+(x-X)*(x-X)) 则有 dY/dt=k(y-Y) dX/dt=k(x-X) 故有叠代方程 Y=Y+k*(y-Y)*dt X=X+k*(x-X)*dt (程序中以t代dt) 程序中第一个for循环代表发射导弹打飞机,第二个
040320174
- 无和集问题。设s是一个正整数集合。s是一个无和集当且仅当x,y属于s,但x+y不属于s. 设计一个算法,计算f(n)的值-no problems and sets. S is a set up is a set of integers. S is a set - and if and only if x, y belong s, x y s. Design is not an algorithm to calculate f (n) values
EXPRESSI
- 一个用于数学函数值计算的C函数 — 求任意数学函数f(x)和f(x,y)的值-a mathematical function for the calculation of C function-seeking arbitrary mathematical function f (x) and f (x, y) values
ImageTest4
- 注意事项: 1>在进行DFT时,强烈建议选用64*64的图像,选用256*256的图像,**时间太长,中间可能导致死机**。 2>程序中在显示频谱图像时有两种方式,即移至中心和未移至中心,可以通过将/** pow(-1, x+y)*/的注释去掉来进行转换。 由于本程序使用了VFW组件,所以在Project--Setting中--Object/libray modules中添加vfw32.lib。 -Note : 1
jichen
- 继承与派生 内容:定义一个点类,包含X,Y的坐标数据成员,显示函数和计算面积的函数成员;以点为基类派生一个圆类,增加表示半径的数据成员,重载显示和计算面积的函数;定义一个直线类,以两个点类对象作数据成员,定义显示、求面积及长度函数。 -inheritance and derived elements : a definition point category, including X, Y coordinates of the data, calculations show functi
Graphics-dengzi
- 一个简单图形软件包。 设计一个简单图形软件包,它调用已有的DDA程序,并包括如下功能: 1. Window(x1,y1,x2,y2) 2. Viewport(x1,y1,x2,y2) 3. MoveTo2(x,y) 4. MoveBy2(x,y) 5. LineTo2(x,y) 6. LineBy2(x,y) 7. Shift2(dx,dy) 8. Pivot2(x,y) 9. Rotate2(angle) 10. Scale2(S
Data4final
- 移位密码、代换密码的加密及解密 实现移位密码:k表示26个字母向前循环位移的字符个数 加密: 输入:k,以及小写表示的明文字母,输出:大写字母表示的密文 解密:输入: k,以及大写字母表示的密文,输出:小写字母表示的明文 例如,当k=11时 明文:wewillmeetatmidnight 密文:HPHTWWXPPELEXTOYTRSE 实现代换密码 例如输入密匙guangzhouuniversity,则建立字母对应关系: a b c d e f g
CPG
- 计算机图形学——立方体旋转 立方体沿轴X,Y,Z旋转,但没有对代码作出注释,不过大家应该能看得懂!! 转载自: 开源盛世-源代码下载网 -computer graphics -- rotating cube cube along the axis X, Y and Z rotation, but no code to make notes, but we should be able to be able to read! ! reprinted
MAKE_DXF4
- Create DXF Autocad 12 format from a text file that contains xyz coordinates of points two format is supported no,x,y,z and no,x,y,z,code for input files
chongzaiyunsuan
- 1、 对Point类重载++和――运算符 编写C++程序完成以下功能: (1) Point类的属性包括点的坐标(x,y); (2) 实现 Point类重载++和――运算符: ++p,--p,p++,p--。 ++和――分别表示x,y增加或减少1。 -1, on the Point-type heavy-duty and- operator prepared C++ Process is complete the followi
X-Y_Table
- X-Y Table 與DS Actuator of Slider 控制-XY Table with DS Actuator of Slider control
2
- 在MATLAB中,用m语言编程实现输入x,y的值,并将它们的值互换后输出(Enter the values of X, y, and exchange their values after output)
循环x的y次方
- 求x的y次方,使用c++语言编写。初学者的小实验,希望能够得到指正。(Y sub square for X i want my program to be corrected and maybe someone can help with my c++.)