-
LIVE1_train_test
卷积神经网络,用于立体图像质量评价,附带说明(The application of convolution neural network to the quality evaluation of stereoscopic images)
- 2021-03-29 20:39:10下载
- 积分:1
-
通过一个dll创建工程和一个dll使用工程来进行非MFC DLL的创建和使用方法...
通过一个dll创建工程和一个dll使用工程来进行非MFC DLL的创建和使用方法-introduce the way to create and use a dll through the 1 project and dlltest project in the rar file
- 2022-02-06 08:55:00下载
- 积分:1
-
fft1024 verilog代码
fft1024 verilog 代码 可以编译成功 建议下载学习(The fft1024 verilog code can compile successful Suggestions for download learning)
- 2017-07-20 10:31:05下载
- 积分:1
-
smartphone的闹钟程序源码,大家有兴趣可以修改
smartphone的闹钟程序源码,大家有兴趣可以修改-smartphone source of alarm procedures, we are interested in can be modified
- 2022-03-01 11:29:13下载
- 积分:1
-
韩国版的街头篮球服务器!不错的休闲游戏
韩文版街头篮球服务端!
很好的休闲游戏-Korean version of the street basketball server! Good casual games
- 2023-06-20 18:45:03下载
- 积分:1
-
Hseries_5Level_Inverter_No1
五电平逆变器的Simulink模型,调制方式采用SPWM(Simulink model of five-level inverters with SPWM modulation)
- 2019-05-07 11:02:22下载
- 积分:1
-
plotmode
说明: 转子动力学进行横向振动绘图分析的程序语句(Rotor dynamics for lateral vibration mapping analysis of the program statement)
- 2019-05-07 19:33:44下载
- 积分:1
-
091749210801295
说明: 从一张图片上对绝缘子的背景处理,进而提取绝缘子图像(Extraction of insulator from a picture)
- 2020-03-13 15:43:51下载
- 积分:1
-
09-MIMO系统容量仿真程序
说明: function C=capacity(SNR,Nt,Nr)
%SNR=0; %定义信噪比为0HZ
A=10^(SNR/10); %信噪比的单位转换关系式
Im=eye(min(Nr,Nt)); %这里的"1"为发射天线和接收天线两者数目少的根数
sum=0; %初始化sum为0
for i=1:10000 %程序循环10000次
H=randn(Nr,Nt); %产生高斯信号源
if Nr<Nt
Q=H*H'; %求威沙特矩阵
else
Q=H'*H;
end
sum=sum+log2(det(Im+A*Q/Nt)); %10000次循环得到的信道容量总和
end
C=sum/10000 %10000次循环的平均值(function C=capacity(SNR,Nt,Nr)
%SNR = 0;% defines SNR as 0Hz
A = 10 ^ (SNR / 10);% s / N unit conversion relation
Im = eye (min (NR, NT));% here "1" is the number of the less number of transmitting antenna and receiving antenna
Sum = 0;% initialize sum to 0
For I = 1:10000% program cycles 10000 times
H = randn (NR, NT);% produces Gaussian signal source
if Nr<Nt
Q = h * H ';% to find the weissard matrix
else
Q=H'*H;
End
Sum = sum + log2 (DET (IM + A * q / NT));% sum of channel capacity from 10000 cycles
End
C = sum / 10000% average of 10000 cycles)
- 2020-09-12 04:39:02下载
- 积分:1
-
Visual C# 韩信点兵算法演示源码
韩信点兵是一道古代数学题,内容是:韩信带兵不足百人,三人一行排列多一个,七人一行排列少两个,五人一行排列正好。相关代码:
int a = 0, b = 0, c = 0;//定义变量
for (int i = 1; i < 100; i++)//遍历
{
Math.DivRem(i, 3, out a);//3行一列时取余
Math.DivRem(i, 5, out b);//5行一列时取余
Math.DivRem(i, 7, out c);//7行一列时取余
if (a == 1 && b == 0 && c == 5)//如果3种方式的余数符合要求
{
textBox1.Text = i.ToString();//显示人数
return;
}
- 2022-01-25 14:48:17下载
- 积分:1