-
atical Graphic Plotter
Description: You can draw difficult mathematical graphs...
atical Graphic Plotter
Description: You can draw difficult mathematical graphs painlessly with this program. For example,
you can draw (x^3+2x+3)/(2x^2+x+1) easily with this program.
- 2022-03-24 05:07:34下载
- 积分:1
-
用c实现光学传输矩阵的算法
用c实现光学传输矩阵的算法-using optical transfer matrix algorithm
- 2022-05-18 01:47:07下载
- 积分:1
-
c++编码的排序算法
c++编码的排序算法-c Coding Algorithm
- 2022-04-29 06:49:31下载
- 积分:1
-
数独程序源码
数独程序源码数独程序源码数独程序源码数独程序源码数独程序源码数独程序源码数独程序源码数独程序源码数独程序源码数独程序源码数独程序源码数独程序源码数独程序源码数独程序源码数独程序源码数独程序源码数独程序源码数独程序源码数独程序源码数独程序源码数独程序源码数独程序源码数独程序源码数独程序源码数独程序源码
- 2022-03-16 23:56:26下载
- 积分:1
-
通过本书的unjeng vheng匹配微软C /数学函数库…
Mathematical function library for Microsoft C / by Unjeng Vheng 书的配套三张软盘-Mathematical function library for Microsoft C/by the book Unjeng Vheng matching three floppy disks
- 2022-03-07 10:47:17下载
- 积分:1
-
prepared by the steepest decline (equation solution), the attention to the matri...
用C编写的最速下降法(解方程),注意矩阵A是正定对称的-prepared by the steepest decline (equation solution), the attention to the matrix A is symmetric positive definite
- 2022-01-26 01:21:10下载
- 积分:1
-
7. 求矢量夹角余弦 8. 求线段之间的夹角 9. 判断线段是否相交10.判断线段是否相交但不交在端点处 11.求线段所在直线的方程 12.求直线的斜率 13....
7. 求矢量夹角余弦 8. 求线段之间的夹角 9. 判断线段是否相交10.判断线段是否相交但不交在端点处 11.求线段所在直线的方程 12.求直线的斜率 13.求直线的倾斜角14.求点关于某直线的对称点15.判断两条直线是否相交及求直线交点16.判断线段是否相交,如果相交返回交点-7. For vector cosine angle 8. For the angle between the line 9. Line judge whether the intersection 10. Line judge whether the intersection but do not pay the endpoint Office 11. For the straight line segment where equation 12. For a linear slope 13. Seeking straight tilt angle 14. For a certain point on a linear symmetrical 15 points. to judge whether the intersection of two straight and for 16 straight intersection. Line judge whether the intersection, the intersection to intersection
- 2022-04-26 18:57:52下载
- 积分:1
-
赫夫曼编码树的应用
利用赫夫曼编码树的原理压缩和解压
- 2023-02-10 02:25:03下载
- 积分:1
-
复数据快速傅立叶变换算法
复数据快速傅立叶变换算法-Minute Data Fast Fourier Transform algorithm
- 2022-03-04 07:52:44下载
- 积分:1
-
文件MD5 生产算法
char *MD5_file (char *path, int md5_len)
{
FILE *fp = fopen (path, "rb");
MD5_CTX mdContext;
int bytes;
unsigned char data[1024];
char *file_md5;
int i;
if (fp == NULL) {
fprintf (stderr, "fopen %s failed
", path);
return NULL;
}
MD5Init (&mdContext);
while ((bytes = fread (data, 1, 1024, fp)) != 0)
{
MD5Update (&mdContext, data, bytes);
}
MD5Final (&mdContext);
file_md5 = (char
- 2022-07-11 22:12:17下载
- 积分:1