登录
首页 » Others » labview 利用tree控件创建树形结构

labview 利用tree控件创建树形结构

于 2021-11-02 发布
0 670
下载积分: 1 下载次数: 1

代码说明:

利用labview自带的tree控件(不需要安装额外的工具包)创建树形结构,分为3层,主机层,分机层,节点层。还包括一篇介绍tree属性和方法的文档。

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

发表评论

0 个回复

  • J1939协议中英文,很全,最全的
    J1939协议中英文,很全,最全的
    2020-12-01下载
    积分:1
  • lingo9破解版
    Lindo 和 Lingo 是美国 Lindo 系统公司开发的一套专门用于求解最优化问题的软件包。Lindo 用于求解线性规划和二次规划问题,Lingo 除了具有 Lindo 的全部功能外,还可以用于求解非线性规划问题,也可以用于一些线性和非线性方程(组)的求解,等等。Lindo 和 Lingo 软件的最大特色在于可以允许优化模型中的决策变量是整数(即整数规划),而且执行速度很快。 Lingo 实际上还是最优化问题的一种建模语言,包括许多常用的函数可供使用者建立优化模型时调用,并提供与其他数据文件(如文本文件、Excel电子表格文件、数据库文件等)的接口,易于方便地输入、求解和分析大规
    2020-12-07下载
    积分:1
  • shamir门限方案
    shamir门限方案就是一个机遇拉格朗日插值多项式的门限方案.此程序由VC的dialog实现
    2020-12-05下载
    积分:1
  • 基于深度学习的车牌识别
    目标识别是计算机视觉一个重要的研究领域,由此延伸出的车辆型号识别具有重要的实际应用价值,特别是在当今交通状况复杂的大城市,智能交通系统成为发展趋势,这离不开对车辆型号进行识别和分类的工作,本文围绕如何利用计算机视觉的方法进行车辆型号的识别和分类展开了一系列研究:本文对当前的目标识别和分类的特征和算法做了总结和归纳。分析比较了作为图像特征描述常见的特征算子,总结归纳了他们的提取方法、特征性能以及相互之间的关联。另外,介绍了在目标识别工作中常用的分类方法,阐述了他们各自的原理和工作方法。研究了深度神经网络的理论依据,分析比较了深度神经网络不同的特征学习方法,以及卷积
    2020-11-28下载
    积分:1
  • 稀疏自码深度学习的Matlab实现
    稀疏自编码深度学习的Matlab实现,sparse Auto coding,Matlab codetrain, m/7% CS294A/CS294W Programming Assignment Starter CodeInstructions%%%This file contains code that helps you get started ontheprogramming assignment. You will need to complete thecode in sampleIMAgEsml sparseAutoencoder Cost m and computeNumericalGradientml For the purpose of completing the assignment, you domot need tochange the code in this filecurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencodtrain.m∥%%========%6% STEP 0: Here we provide the relevant parameters valuesthat willl allow your sparse autoencoder to get good filters; youdo not need to9 change the parameters belowvisibleSize =8*8; number of input unitshiddensize 25number of hidden unitssparsity Param =0.01; desired average activation ofthe hidden units7 (This was denoted by the greek alpharho, which looks like a lower-case pcurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod4/57train.,m∥in the lecture notes)1 ambda=0.0001%o weight decay parameterbeta 3%o weight of sparsity penalty term%%==:79 STEP 1: Implement sampleIMAGESAfter implementing sampleIMAGES, the display_networkcommand shouldfo display a random sample of 200 patches from the datasetpatches sampleIMAgES;display_network(patches(:, randi(size(patches, 2), 204, 1)), 8)%为产生一个204维的列向量,每一维的值为0~10000curer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod5/57train.m/v%中的随机数,说明是随机取204个 patch来显示%o Obtain random parameters thetatheta= initializeParameters ( hiddenSize, visibleSize)%%=============三三三三====================================97 STEP 2: Implement sparseAutoencoder CostYou can implement all of the components (squared errorcost, weight decay termsparsity penalty) in the cost function at once, butit may be easier to do%o it step-by-step and run gradient checking (see STEP3 after each stepWecurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod6/57train. m vb suggest implementing the sparseAutoencoder Cost functionusing the following steps(a) Implement forward propagation in your neural networland implement the%squared error term of the cost function. Implementbackpropagation tocompute the derivatives. Then (using lambda=beta=(run gradient Checking%to verify that the calculations corresponding tothe squared error costterm are correctcurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod7/57train. m vl(b) Add in the weight decay term (in both the cost funcand the derivativecalculations), then re-run Gradient Checking toverify correctnessl (c) Add in the sparsity penalty term, then re-run gradiChecking toverify correctnessFeel free to change the training settings when debuggingyour%o code. (For example, reducing the training set sizecurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod8/57train m vl/number of hidden units may make your code run fasterand setting betaand/or lambda to zero may be helpful for debuggingHowever, in yourfinal submission of the visualized weights, please useparameters web gave in Step 0 abovecoS七grad]sparseAutoencoderCost(theta, visibleSize,hiddensize, lambda,sparsityParam, beta,patches)二〓二二二二二二二〓二〓二〓二〓=二====〓=curer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod9/57train.m vlll96% STeP 3: Gradient CheckingHint: If you are debugging your code, performing gradienchecking on smaller modelsand smaller training sets (e. g, using only 10 trainingexamples and 1-2 hiddenunits) may speed things upl First, lets make sure your numerical gradient computationis correct for a%o simple function. After you have implemented computeNumerun the followingcheckNumericalGradientocurer:YiBinYUyuyibintony@163.com,WuYiUniversityDeep Learning, MATLAB Code for Sparse Autoencode10/57
    2020-12-05下载
    积分:1
  • CEEMD-相关系数-样本熵特征,用于故障分类的特征提取
    ceemd分解,还是很不错的,先将数据精心ceemd分解,得到imf分量,然后通过相关系数帅选分量,在求出他们的样本熵的特征,完美运行,你值得拥有,可以的话,给一个好评,谢谢。
    2020-12-09下载
    积分:1
  • HFSS射频仿真设计实例大全的实例
    全书600页,采用最新HFSS15版本,该书系统讲解了HFSS操作方法,并提供了大量的工程设计实例,部分实例做出实物仿真与测试对比。基础篇:包括HFSS功能概述、HFSS建模操作、网格划分设置、变量设置与调谐优化、仿真结果输出,以及HFSS与其他软件的联合、数据输入/输出等;实例篇:包括PCB微带线、微带滤波器、腔体滤波器、介质滤波器、功分器、耦合器、微带天线、GPS/北斗天线、键合线匹配、SMA头、LTCC、DRO、频率选择表面的设计与仿真。
    2021-05-06下载
    积分:1
  • 《Numerical Optimization 2nd》--Jorge Nocedal Stephen J. Wright
    《Numerical Optimization 2nd》--Jorge Nocedal Stephen J. Wright数值优化对于最优化问题提供了一种迭代算法思路,通过迭代逐渐接近最优解,分别对无约束最优化问题和带约束最优化问题进行求解
    2020-12-07下载
    积分:1
  • 卡尔曼滤波数据用于处理GPS信号
    卡尔曼滤波器用于处理GPS信号,估计出更为精确的位置坐标,采用Matlab仿真算法,分析此代码可以移植成适合自己项目的代码。
    2020-12-07下载
    积分:1
  • EPSON XP-245 爱普生打印机废墨垫清零序 (未阉割清零实测可用) EPSON ADJUSTMENT PROGRAM.rar
    【实例简介】XP-245废墨垫清除程序,目前能找到的清楚程序几乎都阉割了废墨垫清除功能,需要付钱。这个版本是淘宝自购的,实测可以清除废墨垫计数。
    2021-12-01 00:33:53下载
    积分:1
  • 696518资源总数
  • 105877会员总数
  • 14今日下载