CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 搜索资源 - 旋转

搜索资源列表

  1. BPlusTree

    0下载:
  2. B+树的实现,包括数据的插入、删除、B树的旋转-B+ tree implementation, including data insert, delete, B tree rotation
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:609223
    • 提供者:陆明添
  1. StLViewer

    1下载:
  2. 读取STL格式的文档,并把图形显示在自己创建的窗口中。程序能够利用鼠标移动和旋转图形。-read STL file, and visualize the graphic in your own designed widget. And you can move and rotate the figure with the mouse.
  3. 所属分类:STL

    • 发布日期:2017-01-06
    • 文件大小:4884480
    • 提供者:youyaohui
  1. square_1

    0下载:
  2. 计算二维光子晶体正方空气柱的源代码,稍加修改可计算旋转空气柱的情况及其他构型的二维光子晶体-Calculation of two-dimensional square photonic crystal of air columns source code, slightly modified computable rotating column of air, and other configurations of the two-dimensional photonic crystal
  3. 所属分类:Algorithm

    • 发布日期:2017-04-03
    • 文件大小:1530
    • 提供者:zhangyu
  1. PLL

    0下载:
  2. 三项锁相环:利用park变换和clark变换,将三相电网电压,变换为两相旋转坐标系下的电压。同时跟踪A相电压的相位角-Three phase-locked loop: the use of park conversion and clark transformation, the three-phase voltage, transformed into two-phase rotating coordinate system voltage. While tracking the phase
  3. 所属分类:matlab

    • 发布日期:2017-03-28
    • 文件大小:12360
    • 提供者:苏佳
  1. quaternion

    0下载:
  2. 四元数乘法、求逆、共轭、求范数函数,并附有求解矢量旋转坐标的程序例子-Quaternion multiplication, inverse, conjugate, seeking norm function, together with procedures for solving the example of vector rotating coordinate
  3. 所属分类:matlab

    • 发布日期:2016-09-28
    • 文件大小:2048
    • 提供者:wbw
  1. imlogpolar

    0下载:
  2. 使用傅里叶梅林变换进行图像配准,抗旋转、平移和缩放~-Using Fourier Mellin Transform Image Registration
  3. 所属分类:matlab

    • 发布日期:2017-03-29
    • 文件大小:1348
    • 提供者:feles
  1. RotationPforest

    2下载:
  2. 旋转森林 最近热门的集成学习 分类方法,可用于模式识别分类-Rotation forest in matlab
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-05-10
    • 文件大小:2322257
    • 提供者:周明
  1. Morphy

    1下载:
  2. 用matlab编写的图像几何变换程序,包括旋转和平移,适合初学者。-Prepared using matlab image geometric transformation process, including rotation and translation, suitable for beginners.
  3. 所属分类:matlab例程

    • 发布日期:2013-08-16
    • 文件大小:539
    • 提供者:nana
  1. HuMoment

    0下载:
  2. Hu矩的计算,通过Hu矩计算可以实现图像的旋转、平移的不变特性-Hu Moment, can be achieved by Hu Moment of image rotation, translation invariant features
  3. 所属分类:matlab

    • 发布日期:2017-04-03
    • 文件大小:484147
    • 提供者:wuhanlai
  1. esprit

    0下载:
  2. 具有高分辨信号的空间谱估计-旋转不变技术-ESPRIT
  3. 所属分类:matlab

    • 发布日期:2017-04-06
    • 文件大小:760
    • 提供者:renxiaoli
  1. AxeRolingl

    0下载:
  2. 求解三维轴及坐标旋转-Solving three-dimensional axis and CORDIC
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-12-10
    • 文件大小:1630
    • 提供者:俞伟
  1. bear

    4下载:
  2. 这个是直升机齿轮箱故障特征提取的程序。用的是小波变化加上hilbert包络的方法,简单实用,对大型旋转设备的故障检测有很广泛的应用!-This is a Helicopter Gearbox Fault Feature Extraction procedures. Changes using a wavelet plus hilbert envelope method is simple and practical, on large rotating equipment fault detec
  3. 所属分类:matlab

    • 发布日期:2017-03-23
    • 文件大小:968
    • 提供者:埃里克斯
  1. shu

    0下载:
  2. 编写程序,首先建立如下图所示的带头结点的二叉链存储结构二叉树,然后把二叉树顺时针旋转90度后在屏幕上打印该二叉树,然后输出分别按照前序遍历(含递归与非递归两种方法),中序遍历,后序遍历以及层次遍历等方法遍历二叉树次序访问各结点的序列信息,并验证结果正确与否,并实现在该二叉树中查找某结点数据的方法。-Programming, first of all to establish a lead as follows node chain store binary tree structure, and
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:11187
    • 提供者:瑶瑶
  1. avt

    0下载:
  2. 1.本程序演示平衡二叉树的插入,删除,查找,。 2.首先要先初始二叉树为空树; 3.接着要实现平衡二叉树的插入,删除,,其中根据平衡二叉树插入,删除的算法要不停的把插入的元素平衡地插入,需要调用平衡分析函数和左右旋转函数,更新平衡二叉树;删除元素后也要调用平衡分析函数和左右旋转函数,更新平衡二叉树。 4.平衡二叉树的查找则可根据查找算法实现。比较简单。-1. This procedure demonstration balanced binary tree insertion, de
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:74798
    • 提供者:张欣
  1. work

    0下载:
  2. 包含DVB-T标准中的内交织,内编码,卷积交织,和基4FFT 1024。所有程序为MATLAB实现,特别推荐FFT旋转因子求法。-Includes DVB-T standard within intertwined, with coding, Convolutional Interleaver, and base 4FFT 1024. MATLAB realization of all the procedures, in particular, recommended rotating fac
  3. 所属分类:matlab

    • 发布日期:2017-03-30
    • 文件大小:2512
    • 提供者:赵静
  1. 4dofrobot

    1下载:
  2. 四自由度的简易机器人(转载),通过输入四个关节的旋转角度,显示出实体在X、Y、Z三轴上的投影,并可计算出位置坐标-Simple robot four degrees of freedom (reprint), by entering the four joint rotation angle, showing that the entity in the X, Y, Z axis on the projection, and calculate the location coordinates
  3. 所属分类:matlab

    • 发布日期:2017-04-29
    • 文件大小:44451
    • 提供者:yn
  1. xticklabel_rotate

    0下载:
  2. 解决MATLAB的label字体不能旋转显示的问题,有详细使用说明。-Solve the MATLAB label rotationproblem.Detailed instructions is given.
  3. 所属分类:matlab

    • 发布日期:2017-03-22
    • 文件大小:3126
    • 提供者:Hu
  1. matlab2

    0下载:
  2. 用matlab实现图像的各种变换,旋转,大小变换,滤波平滑。-Matlab implementation using a variety of image transformation, rotation, size, transform, smoothing filter.
  3. 所属分类:matlab

    • 发布日期:2017-05-03
    • 文件大小:618156
    • 提供者:陈猪猪
  1. earth

    0下载:
  2. 这是在MATLAB下编写的一个代码运行后会出现一个地球,还能旋转,很有意思的程序和大家分享-This is prepared in a MATLAB code to run after an earth, but also rotation, a very interesting process and U.S. share
  3. 所属分类:matlab

    • 发布日期:2017-04-07
    • 文件大小:540
    • 提供者:王涛
  1. UCA_SMI

    0下载:
  2. QR分解SMI算法的目的正是要避免直接来解线性方程,而是将自相关矩阵分解,并利用Givens旋转实现数据矩阵的QR分解,最终将权矢量的求解问题转化为三角线性方程组的求解问题。-QR decomposition SMI algorithm, whose objective it is to avoid directly to solution of linear equations, but will auto-correlation matrix decomposition, and the u
  3. 所属分类:matlab

    • 发布日期:2017-04-07
    • 文件大小:954
    • 提供者:张亚光
« 1 2 3 4 5 67 8 9 10 11 ... 50 »
搜珍网 www.dssz.com