-
Based on M/G/K multi
基于M/G/K 多类别共用一个资源的最优化分配问题程序 主要以系统总等待时间为目标函数-Based on M/G/K multi-class share an optimization of resources allocation process is essentially the system as the objective function the total waiting time
- 2022-03-04 17:10:15下载
- 积分:1
-
贝叶斯推断及其互联网应用
用户输入了一个单词。这时分成两种情况:拼写正确,或者拼写不正确。我们把拼写正确的情况记做c(代表correct),拼写错误的情况记做w(代表wrong)。
所谓"拼写检查",就是在发生w的情况下,试图推断出c。从概率论的角度看,就是已知w,然后在若干个备选方案中,找出可能性最大的那个c,也就是求下面这个式子的最大值。
请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-03-25 15:07:42下载
- 积分:1
-
adaboost检测
/****************************************************************************
NJU Magic. Copyright (c) 2007. All Rights Reserved.
--------------------------------------------------------------------
Permission to use, copy, or modify this software and its documentation
for educational and research purposes only and without fee is hereby
granted, provided that this copyright notice appear on all copies and
supporting documentation. For any other uses of this software, in
original or modified form, i
- 2022-07-13 18:29:21下载
- 积分:1
-
三次样条插值函数的具体应用程序,主要应用于热敏电阻的温度和阻值之间的换算...
三次样条插值函数的具体应用程序,主要应用于热敏电阻的温度和阻值之间的换算-Cubic spline interpolation function of the specific applications, mainly used in thermistor temperature and resistance of the conversion between
- 2022-05-24 08:42:43下载
- 积分:1
-
C实现RS编码
用C实现RS码纠错仿真
RS码的编码程序 编码效率高,且经实际验证符合RS纠错码的要求-RS code using C realize simulation RS
error correction code encoding procedure coding efficient and practical
to verify compliance with the requirements of RS error-correcting codes
- 2023-05-05 14:10:03下载
- 积分:1
-
能运算的函数: sin,cos,tg,ctg,e^,pow(x,y),cosh,sinh,tgh,log10,ln,sqrt,arcsin,arccos,...
能运算的函数: sin,cos,tg,ctg,e^,pow(x,y),cosh,sinh,tgh,log10,ln,sqrt,arcsin,arccos,
运算方式: +,-,*,/,绝对值(“[ ]”),^,!,
输入规则: 用键盘或按钮都可,输入完按回车运算,(光标要在最后)
sin(21-32)/(12-43)
4(323-4343) 4*(323-4343) e^2-sin3-3^4,(不要输入pow(3,4)) //有无*都可
2*3^4是(2*3)^4 而不是2*(3^4) 也就是要用x^y就要一定要(x^y)加上一个括号
[3-4]是求3-4的绝对值不是中括号 -performance computing functions : sin, cos, tg, rays, e ^, pow (x, y), cosh, sinh, tgh, log10, ln, sqrt, Simulation, arccos computational methods : absolute ,-,*,/, ( "[]"),^,!, importation rules : a keyboard or buttons which can be imported by the transport operator End (cursor to the final) sin (21-32)/(12-43) 4 (323-4343) 4* ( 323-4343), e ^ 2- KF-3 ^ 4 (do not enter pow (3,4))//* there can be 2* 3 ^ 4 is (2* 3) ^ 4 rather than 2* (3 ^ 4) was needed x ^ y must have (x ^ y) with a brackets [3-4] is the pursuit of 3-4 is not the absolute value of the brackets
- 2022-01-26 03:43:37下载
- 积分:1
-
指数平滑法
指数平滑法在电力系统负荷预测中有着重要的应用,是电力系统负荷预测的一种重要算法,该源代码又分别实现了一次指数平滑法、二次指数平滑法两种算法。
- 2022-08-18 15:22:01下载
- 积分:1
-
趣味问题的程序原代码 海滩上有一堆桃子,五只猴子来分。第一只猴子把这堆桃子凭据分为五份,多了一个,这只 猴子把多的一个扔入海中,拿走了一份。第二只猴子把剩...
趣味问题的程序原代码 海滩上有一堆桃子,五只猴子来分。第一只猴子把这堆桃子凭据分为五份,多了一个,这只 猴子把多的一个扔入海中,拿走了一份。第二只猴子把剩下的桃子又平均分成五份,又多了 一个,它同样把多的一个扔入海中,拿走了一份,第三、第四、第五只猴子都是这样做的, 问海滩上原来最少有多少个桃子?- On the interest question procedure original code beach has pile
of peaches, five monkeys divide. The first monkey divides into this
pile of peach proof five, many, this monkey has thrown into many in
the sea, took away. The second monkey the peach which is left over
equally divides into five, also many, it similarly has thrown into
many in the sea, took away, third, fourth, the fifth monkey all is
does this, asked how many peaches on the beach most is originally
unusual?
- 2022-10-26 14:25:03下载
- 积分:1
-
简单的路标识别
应用背景本代码用于国际机器人比赛,识别图标有左拐、右拐、直走三个方向,识别率可以达到90%,在机器人倾斜角度相对较小的情况下,识别率可以达到100%。每秒钟可以识别40~60张图片。有效的提升了机器人竞技实力!关键技术本代码采用图像细化骨架提取和霍夫变换拟合直线,通过图像细化提取路标的骨架,再通过霍夫变换拟合直线,再通过拟合的直线,计算拟合后直线的方向,以45度为标准,倾角大于45度的视为纵线,否则视为横线,在通过判定的直线方向给拟合后直线归类,竖直和水平方向,根据直线中心点的位置,判断当先路标的指向。
- 2022-05-31 13:08:10下载
- 积分:1
-
Prim算法求解最短路径
import java.util.ArrayList;
public class Prim {
double[][] matrix; //从0开始,邻接矩阵
double t; //记录时间
int num; //节点数
float bestc; //最优路径距离
int start = 0; 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-03-20 15:11:11下载
- 积分:1