-
A program to demonstrate the optimization process of ant colony optimization for...
A program to demonstrate the optimization process of ant colony optimization for the traveling saleman problem (TSP). The cities are shown as red circles, the pheromone on the connections between them (fully connected graph) by gray lines. The darker the grey, the more pheromone is currently on the edge. During the optimization, the currently best found tour is drawn in red. To run the optimization, first create a random TSP, then create an ant colony, and finally run the optimization.
- 2022-02-19 22:51:42下载
- 积分:1
-
用tc来计算pi的精确计算
用tc来计算pi的精确计算-used to calculate the precise calculation of pi
- 2022-03-18 11:52:47下载
- 积分:1
-
实现线性表的一些基本操作,列如线性表的插入删除 查找
实现线性表的一些基本操作,列如线性表的插入删除 查找-To achieve some of the basic operation of a linear table, column, such as linear search the table insert delete
- 2022-02-13 14:16:40下载
- 积分:1
-
MMSE均衡
自适应信道均衡器模型仿真 收录时间:2013-12-09 资源分类:Matlab 工具:MATLAB 7.8 (R2009a) 均衡器(Equalizer),是一种可以分别调节各种频率成分电信号放大量的电子设备,通过对各种不同频率的电信号的调节来补偿扬声器和声场的缺陷,
- 2023-01-13 00:20:04下载
- 积分:1
-
Matlab的地理数据分析
%Markov链%第一种方法A=[0 1243.37 171.92 29.79 0 0 00 0 6983.97 957.97 0 0 00 0 203845.5 9812.96 0 0 034 0 77259.28 11323.64 3851.17 0 4.89128.47 11580.83 917.15 0 5761.7 2397.61 02293.52 79225.61 9979.07 3647.11 0 91339.8 24.360 141.18 964.94 2.2 0 0 28.67]; %原始数据矩阵[m,n]=size(A); %计算矩阵的行数和列数Rsum=sum(A"); %计算矩阵各行数值之和S=Rsum(ones(n,1),:); %将各行数值之和平移为矩阵M=(A"./S)"; %计算转移概率矩阵%第二种方法A=[0
- 2022-01-22 01:04:19下载
- 积分:1
-
在MPI上用并行LU分解求解线性方程组的源程序。
在MPI上用并行LU分解求解线性方程组的源程序。- Decomposes the solution system of linear equations on MPI with
parallel LU the source program.
- 2023-03-13 09:25:04下载
- 积分:1
-
修道士和野人问题
经典的修道士和野人过河问题,
1、可以选择修道士和野人的人数,
2、可以输出过河的详细方案,
3、代码清晰含注释,
- 2022-05-16 12:35:42下载
- 积分:1
-
CCD相机的MTF测量代码
一般的评论:此代码可以用来测量MTF的预采样的图像,这是一个 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-02-01 07:36:35下载
- 积分:1
-
ELM-极限学习机
极限学习机算法,由于模式识别、非线性回归等方面。希望对您有帮助。。。。
- 2022-07-03 07:57:22下载
- 积分:1
-
连数据库,输入用户名和密码后如何跳转到主窗口
import javax.swing.*;
import java.awt.event.*;
import java.sql.*;
public class Login extends JFrame implements ActionListener {
private JLabel lbId, lbPass;
private JTextField txtId, txtPass;
private JButton btLogin, btExit;
private Connection datacon = null;//连接对象
private PreparedStatement pstat = null;//命令对象
private ResultSet rs = null;//结果
- 2022-02-05 20:26:14下载
- 积分:1