登录
首页 » 算法 » 程序块的操作,匿名块的操作,子程序的操作,游标的操作

程序块的操作,匿名块的操作,子程序的操作,游标的操作

于 2022-03-09 发布 文件大小:10.17 kB
0 161
下载积分: 2 下载次数: 1

代码说明:

程序块的操作,匿名块的操作,子程序的操作,游标的操作-Block the operation of the anonymous block operations, subroutine operation, the operation of the cursor

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

发表评论

0 个回复

  • 推荐系统-电影推荐-SVD方案
    这是数据挖掘中的一次作业,用推荐系统的方法,来对电影打分。SVD(Singular Value Decomposition)的想法是根据已有的评分情况,分析出评分者对各个因子的喜好程度以及电影包含各个因子的程度,最后再反过来根据分析结果预测评分。
    2022-01-26 06:44:24下载
    积分:1
  • 用opencv分割视频和光流跟踪
    分别采用背景差分和三帧差分的方法分割视频,采用经典光流法跟踪视频中运动的物体,通过角点检测相结合得到运动物体精细的轮廓
    2023-07-28 20:00:02下载
    积分:1
  • 完整的vc源码有关于第二类完全椭圆积分,非常实用
    完整的vc源码有关于第二类完全椭圆积分,非常实用-vc integrity of the source code on the second category fully elliptic integrals, very practical
    2022-03-22 09:43:18下载
    积分:1
  • dual simplex method for solving linear programming problems.
    对偶单纯形法求线性规划最优解-dual simplex method for solving linear programming problems.
    2022-01-26 01:48:58下载
    积分:1
  • FFT
    载波生成器+博立业算法分析器。多功能,主要用于演示。-FFT
    2022-03-19 15:11:26下载
    积分:1
  • encryption decryption
    它是一种信息加密技术,它为我们的信息提供了安全性,它将纯文本转换成密文,并在此基础上以5*5的块排列
    2023-05-16 10:45:02下载
    积分: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
  • 禁忌搜索对初始解、邻域个数及禁忌列表的大小等参数有比较严格的要求, 这些参数直接影响着的优化能 力。文章提出了一种改进的禁忌搜索, 它用有效空间来压...
    禁忌搜索法对初始解、邻域个数及禁忌列表的大小等参数有比较严格的要求, 这些参数直接影响着算法的优化能 力。文章提出了一种改进的禁忌搜索法, 它用有效空间来压缩搜索范围, 这样可以提高搜索效率和全局搜索能力。用短期 和长期禁忌列表存储器来保证算法能搜索到全局空间的每一点, 并且不重复搜索。经过验算和分析, 证明它是一种较好的 全局启发式搜索法-Tabu search method, the initial solution, neighborhood and tabu list size of the number of parameters such as have more stringent requirements, these parameters directly affect the ability to optimize the algorithm. This paper presents an improved tabu search method, it is used effectively to compress the search space, so that can improve search efficiency and global search capabilities. Short-term and long-term memory tabu list to ensure the algorithm to search to the global space, each point, and do not repeat the search. After checking and analysis, to prove that it is a good global heuristic search method
    2022-04-06 20:06:04下载
    积分:1
  • 单源点最短路径贪心:用到Dijkstra
    单源点最短路径贪心算法:用到Dijkstra算法,-single source shortest path greedy algorithm : use Dijkstra algorithm,
    2022-12-16 21:35:03下载
    积分:1
  • 光线跟踪GPU实现
    首先确定眼睛的位置和视线方向。然后确定从眼睛出发通过每个象素中心的光线方程。通过该光线求光线与场景中物体的最近交点。 若有交点,首先产生阴影测试光线,它是连接交点与光源的光线,然后计算该交点与光源间是否有阻挡物,如果没有则计算该点的Phong模型分量,若有阻挡物则不计算。若交点处的场景为反射表面,则产生反射光线,将此光线继续与场景求交。若交点处的场景具有透明性,则产生透射光线,将此光线继续与场景求交。 若无交点,则返回默认值。 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
    2022-01-25 23:53:04下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载