登录
首页 » 算法 » 螺旋矩阵的生成,vc6.0 螺旋矩阵的生成,vc6.0

螺旋矩阵的生成,vc6.0 螺旋矩阵的生成,vc6.0

于 2022-04-29 发布 文件大小:1.74 kB
0 200
下载积分: 2 下载次数: 1

代码说明:

螺旋矩阵的生成,vc6.0 螺旋矩阵的生成,vc6.0-spiral matrix generation, vc6.0 spiral matrix generation, vc6.0

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

发表评论

0 个回复

  • STM32 PMSM磁场定向控制(FOC)SDK V3.4。
    用户手册提供的信息,以方便STM32的使用和定制永磁同步电机磁场定向控制(FOC)SDK V3.4。文档结构:一个完整的文档列表中的第2节规定。这是包括在软件程序包(STSW-STM32100),它可在ST网站。第3条:工作环境和customizationexplains电机控制工作空间,其定制和下载。第4节:如何下载LCD用户interfaceexplains如何下载一个图形化用户界面,使运行时执行命令和微调系统参数(注意,这个过程必须要在新的评估板做到了这一次)在单片机的闪存存储器配备了液晶显示器STM32评估板。第5节:LCD用户interfaceexplores菜单屏幕和控制。
    2022-08-10 13:45:46下载
    积分:1
  • ! 2 ! HOMPACK90 is a suite of FORTRAN 90 subroutines for solving nonline...
    ! 2 ! HOMPACK90 is a suite of FORTRAN 90 subroutines for solving nonlinear 3 ! systems of equations by homotopy methods. There are subroutines for 4 ! fixed point, zero finding, and general homotopy curve tracking problems, 5 ! utilizing both dense and sparse Jacobian matrices, and implementing 6 ! three different algorithms: ODE-based, normal flow, and augmented 7 ! Jacobian. The (driver) subroutines called by the user are given in the 8 ! table below, and are well documented internally. The user need not 9 ! be concerned with any other subroutines in HOMPACK90. -! 2 ! HOMPACK90 is a suite of FORTRAN 90 subroutines for solving nonlinear 3 ! systems of equations by homotopy methods. There are subroutines for 4 ! fixed point, zero finding, and general homotopy curve tracking problems, 5 ! utilizing both dense and sparse Jacobian matrices, and implementing 6 ! three different algorithms: ODE-based, normal flow, and augmented 7 ! Jac
    2022-07-21 06:18:17下载
    积分:1
  • opencv实例源代码.rar
    资源描述 ,opencv实例源代码里面包含的基于opencv的光流法程序和实现功能为图像平滑、图像缩小与Canny 边缘检测。三、用 DirectShow 编制的视频采集程序 。
    2023-02-04 02:55:10下载
    积分:1
  • 蚁群解决TSP旅游商问题
    function [R_best,L_best,L_ave,Shortest_Route,Shortest_Length]=ACATSP(C,NC_max,m,Alpha,Beta,Rho,Q)%%-------------------------------------------------------------------------%% 主要符号说明%% C n个城市的坐标,n×2的矩阵%% NC_max 最大迭代次数%% m 蚂蚁个数%% Alpha 表征信息素重要程度的参数%% Beta 表征启发式因子重要程度的参数%% Rho 信息素蒸发系数%% Q 信息素增加强度系数%% R_best 各代最佳路线%% L_best 各代最佳路线的长度%%========================================================================= %%第一步:变量初始化n=size(C,1);%n表示问题的规模(城市个数)D=zeros(n,n);%D表示完全图的赋权邻接矩阵for i=1:nfor j=1:nif i~=jD(i,j)=((C(i,1)-C(j,1))^2+(C(i,2)-C(j,2))^2)^0.5;elseD(i,j)=eps;      %i=j时不计算,应该为0,但后面的启发因子要取倒数,用eps(浮点相对精度)表示endD(j,i)=D(i,j);   %对称矩阵endend%{1.C就是城市坐标             x         y城市1    0
    2022-08-25 13:59:52下载
    积分:1
  • 表示OFDM信号PAPR降低使用裁剪和SLM技术
    它包含用于以下操作的用户驱动的代码:1.显示的QPSK基带信号。2. OFDM功率谱。OFDM信号的3 BER性能。OFDM信号的4频谱。5.降低PAPR使用剪切/过滤。6.降低PAPR使用选择性映射。PAPR降低使用选择性映射和剪切/过滤7.比较研究。oneOf的正交频分复用(OFDM)系统中的具有挑战性的问题之一是它的高峰 - 均功率比(PAPR)。
    2023-05-04 11:15:03下载
    积分:1
  • the mapped relation is built using BP network in order to provide fitness functi...
    用BP网络建立映射关系,为遗传算法提供适应度函数,通过改进遗传算法完成最小值优化-the mapped relation is built using BP network in order to provide fitness function for genetic algorithm. At last, optimization of minimum value is finished by genetic algorithm.
    2023-04-03 12:00:04下载
    积分:1
  • 这个是一个用java实现的tftp程序。其中包括客户端和用户端
    这个是一个用java实现的tftp程序。其中包括客户端和用户端-This is a realization of java with the tftp process. Including client and the client
    2022-12-15 08:10:03下载
    积分:1
  • poj3352给一个图,求出需要加最少的边使去掉任一条边,图都连通.割点的应用...
    poj3352给一个图,求出需要加最少的边使去掉任一条边,图都连通.割点的应用-poj3352 to a map, obtained at least the need to remove the edges so that any one side, map are connected. cut-point application
    2023-07-27 11:35:03下载
    积分:1
  • 蚁群中有关参数的最优选择对蚁群的具体参数的选择,达到快的收敛速度和好的仿真效果...
    蚁群算法中有关算法参数的最优选择对蚁群算法的具体参数的选择,达到快的收敛速度和好的仿真效果-Ant colony algorithm parameters relating to the optimal algorithm of ant colony algorithm to choose the specific choice of parameters to achieve faster convergence speed and a good simulation of the effect of
    2022-03-21 18:13:58下载
    积分:1
  • 这个函数曲线的三维高斯轮廓为椭圆体。很有用的。
    This function plots the contours of 3d gaussians as ellipsoids. Quite useful.
    2022-09-24 10:35:03下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载