登录
首页 » 算法 » sdfsdf sdfsdf sd 自卫队自卫队 sd s fsdfsdf

sdfsdf sdfsdf sd 自卫队自卫队 sd s fsdfsdf

于 2022-11-04 发布 文件大小:52.70 kB
0 177
下载积分: 2 下载次数: 1

代码说明:

sdfsdf sdfsdf sd 自卫队自卫队 sd s fsdfsdfsdfsdf sdfsdf sd sdf sdf sd s fsdfsdfsdfsdf sdfsdf sd sdf sdf sd s fsdfsdfsdfsdf sdfsdf sd sdf sdf sd s fsdfsdfsdfsdf sdfsdf sd sdf sdf sd s fsdfsdfsdfsdf sdfsdf sd sdf sdf sd s fsdfsdfsdfsdf sdfsdf sd sdf sdf sd s fsdfsdfsdfsdf sdfsdf sd sdf sdf sd s fsdfsdfsdfsdf sdfsdf sd sdf sdf sd s fsdfsdfsdfsdf sdfsdf sd sdf sdf sd s fsdfsdfsdfsdf sdfsdf sd sdf sdf sd s fsdfsdfsdfsdf sdfsdf sd自卫队自卫队 sd s fsdfsdfsdfsdf sdfsdf sd sdf sdf sd s fsdfsdfsdfsdf sdfsdf sd sdf sdf sd s fsdfsdfsdfsdf sdfsdf sd sdf sdf sd s fsdfsdfsdfsdf sdfsdf sd sdf sdf sd s fsdfsdfsdfsdf sdfsdf sd sdf sdf sd s fsdfsdfsdfsdf sdfsdf sd sdf sdf sd s fsdfsdfsdfsdf sdfsdf sd sdf sdf sd s fsdfsdfsdfsdf sdfsdf sd sdf sdf sd s fsdfsdfsdfsdf sdfsdf sd sdf sdf sd s fsdfsdfsdfsdf sdfsdf sd sdf sdf sd s fsdfsdfsdfsdf sdfsdf sd sdf sdf sds fsdfsdfsdfsdf sdfsdf sd sdf sdf sd s fsdfsdfsdfsdf sdfsdf sd 自卫队自卫队 sd s fsdfsdfsdfsdf sdfsdf sd sdf sdf sd s fsdfsdfsdfsdf sdfsdf sd sdf sdf sd s fsdfsdfsdfsdf

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 神经网络和遗传
    资源描述综合了神经网络和遗传算法,可以用于参数的优化
    2022-12-07 01:15:03下载
    积分:1
  • Huffman解码
    这是一个用java解码哈夫曼树的项目。
    2022-09-20 12:35:02下载
    积分:1
  • //=== === === === === ==== === === === === === === =// letter Description// func...
    //=== === === === === === ===== //函数说明 //函数名称:Correlation //函数功能:计算最小二乘法拟合的多项式的相关系数 //使用方法:int M------ 拟合多项式的阶数(已知条件) // double *b--- 拟合曲线的系数,排列顺序为由高阶到低阶(已知条件) // double *x--- 结点x轴数据(已知条件) // double *y--- 结点y轴数据(已知条件) // double *Yg-- 结点估计值,个数为m(过程变量) // int m------ 结点个数(已知条件) //注意事项:多项式阶数最高为10,多项式的形式为 y = a0 + a1x +a2x2 -//=== === === === === ==== === === === === === === =// letter Description// function name : Correlation// Function functions : Calculation least squares polynomial fitting of the correlation coefficient// Use : int M------ polynomial fitting stage (known condition)//* b--- double fitting song The coefficient, Higher-order the order on grounds of low order (known condition)//* double-node x x axis data (known to be pieces)// double* y--- node y-axis data (known condition)//* double FSL-- Nodes estimates, Number m (process variables)// int m------ node number (known condition)// Note : polynomial order of a maximum of 10. polynomials in the
    2022-04-29 13:08:12下载
    积分:1
  • IGMP的实现
    containe IGMP的源代码。Internet组管理协议(IGMP)是用于主机和相邻的路由器在IP网络上建立组播组成员的通信协议。 IGMP协议是IP多播的一个组成部分。
    2022-04-08 16:34:34下载
    积分:1
  • FastICA by cc++
    fastica C++实现,很简单的,很容易看的 
    2022-02-25 19:09:15下载
    积分:1
  • 遥感影像分类
    资源描述用C#开发的遥感图像分类小软件,实现对遥感图像的的分类。主要是学习使用。
    2023-07-10 11:55:03下载
    积分:1
  • Calculate the derivative of a parametric functions
    Calculate the derivative of a parametric functions
    2022-11-03 21:20:03下载
    积分:1
  • 基于熵的挖掘数据子空间聚类方
    Entropy Based Subspace Clustering for Mining Data - ENCLUS - a new version of PROCLUS algorithm for clustering high dimensional data set.-Entropy Based Subspace Clustering for Mining Data- ENCLUS- a new version of PROCLUS algorithm for clustering high dimensional data set.
    2022-09-06 00:25:03下载
    积分:1
  • LZW压缩c++实现
    应用背景本程序是一个使用C++实现的压缩算法,LZW算法,LZW压缩算法是Lempel-Ziv-Welch 3个人共同发明的,简称 LZW 的压缩算法,可以用任何一种语言来实现它. LZW是GIF图片文件的压缩算法,而且zip压缩的思想也是基于LZW实现的,所以LZW对文本文件具有很好的压缩性能。 LZW压缩算法的基本原理:提取原始文本文件数据中的不同字符,基于这些字符创建一个编码表,然后用编码表中的字符的索引来替代原始文本文件数据中的相应字符,减少原始数据大小。看起来和调色板图象的实现原理差不多,但是应该注意到的是,我们这里的编码表不是事先创建好的,而是根据原始文件数据动态创建的,解码时还要从已编码的数据中还原出原来的编码表. 关键技术编码表中每一项的大小一般为12位,用来代表一个字符串。这样编码表有2**12=4096项,编码值是0~4095。通常情况下0~255是固定的,用 来代表单个字符0~255。而值256通常用来表示开始新的编码表,因为如果编码表的4096项都用完了,而待压缩文件还没有处理完,那么就需要生成新的 编码表继续压缩;257表示压缩结束,用来写到压缩文件尾。从258开始,每个值都代表一个字符串(至少2个字符)。 举个例子,有下面的字符串:ababcdefgefg。(a的ascii码是0x61=97) 压缩后的数据是:97 98 258 99 100 101 102 103 263 103。 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
    2022-03-11 09:38:15下载
    积分:1
  • 线程池实现
    类池管理来自客户端的请求。 管理是存储在一个优先队列中的请求,在并行执行它们。 在并行执行的请求的最大数目是最大值-变量的构造函数。 Run 的函数打开一个新的线程调用的主线程,做管理工作的。 池中添加一个新的请求进行排队功能,此函数是线程安全的。 等待函数被阻塞直到所有 (或特定请求) 的要求也都结束了。
    2022-03-17 09:45:45下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载