-
推荐系统-电影推荐-SVD方案
这是数据挖掘中的一次作业,用推荐系统的方法,来对电影打分。SVD(Singular Value Decomposition)的想法是根据已有的评分情况,分析出评分者对各个因子的喜好程度以及电影包含各个因子的程度,最后再反过来根据分析结果预测评分。
- 2022-01-26 06:44:24下载
- 积分:1
-
正弦信号估计的扩展卡尔曼滤波 & UKF
M 文件包括的扩展卡尔曼滤波和卡尔曼 Filter(includes both nonaugment and augment) Unscent 估计正弦信号的算法。代码可以正确运行和结果显示明显。
- 2023-05-23 10:40:03下载
- 积分:1
-
先设定随机数发生公式的种子值,根据这个产生一个随机的数组,然后通过插入排序进行排序,并计算运行时间...
先设定随机数发生公式的种子值,根据这个产生一个随机的数组,然后通过插入排序进行排序,并计算运行时间-First occurrence of the formula set random number seed value, the basis of this result in a random array, and then sort through the insertion sort, and calculate the running time
- 2022-08-12 10:12:19下载
- 积分:1
-
常用数学计算工具
常用数学计算工具-tool commonly used mathematical calculations
- 2022-01-22 17:15:44下载
- 积分:1
-
高效数据类型和算法库,含很多数值算法
高效数据类型和算法库,含很多数值算法-high efficient data structure and algorithm, including a variety of algorithms and numeric computings.
- 2023-06-15 23:35:03下载
- 积分:1
-
C语言作的四色验证1.需求分析问题描述:证明了可以用不多于4种颜色对n个区域着色,而满足相邻的区域具有不同的颜色输入形式 : 暂定最多50个区域,如需证明更多区...
C语言作的四色验证1.需求分析问题描述:证明了可以用不多于4种颜色对n个区域着色,而满足相邻的区域具有不同的颜色输入形式 : 暂定最多50个区域,如需证明更多区域,修改#define S 50 即可;以整形形式输入(取值范围1-32767)用户需要证明的区域数目,相联的一对矩阵; 输出形式:以0和1输出关联矩阵,和以blue yellow orange pink形式输出每个区域相对应证明出的颜色;-C language does four colors confirm 1. demands analyses
question description: Had proven may use not to be many to 4 kind of
colors to n region coloration, but satisfies the neighboring region to
have the different color input form: Establishes provisionally more
than 50 regions, if must prove more regions, revise#define S 50 then;
Region number (value scope 1-32767) the user needs to prove which by
the reshaping form input, unites a pair of matrix; Output form: By 0
and 1 output incidence matrixs, with form outputs the color by blue
yellow orange the pink which each region corresponds proves;
- 2022-10-20 02:35:04下载
- 积分:1
-
计算文件的32位CRC校验码.比较简单实用,Demo中一次性读完整个文件是不可取的,您需要作些修改以应用于所有大小的文件CRC....
计算文件的32位CRC校验码.比较简单实用,Demo中一次性读完整个文件是不可取的,您需要作些修改以应用于所有大小的文件CRC.-calculations of 32 of CRC. Relatively simple and practical, Demo one time reading the entire document is undesirable, You need to make some changes to apply to all size of the CRC document.
- 2022-02-07 20:22:45下载
- 积分:1
-
一个求解Josephus问题的函数
#include
#include
#define NULL 0
#include
typedef struct Lnode
{
int data;
struct Lnode *next;
}Josephus;
void CreateList(Josephus*&L,int n)//建立循环链表
{
int i;
Josephus *p,*s;
s=(Josephus*)malloc(sizeof(Josephus));
s->data=1;
L=p=s;
for(i=2;idata=i;
p->next=s;
p=s;
}
p->next=L;
}
void DeleteList(Josephus*&L,Josephus*p,Josephus*q)
{
q->next=p->next;
free(p);
}
void Josephus1(Josephus*&L,int s,int m)
- 2022-01-27 23:12:59下载
- 积分:1
-
MULLER s algorithm Muller classical algorithm
muller s algorithm 穆勒算法 经典-MULLER s algorithm Muller classical algorithm
- 2022-03-24 18:14:01下载
- 积分:1
-
在matlab环境中用蚁群算法寻优潜水器的三维路径,效果很好
在matlab环境中用蚁群算法寻优潜水器的三维路径,效果很好-In the matlab environment, using ant colony optimization algorithm for three-dimensional underwater vehicle path, good results
- 2022-12-10 21:20:03下载
- 积分:1