登录
首页 » matlab » ZernikeWFSImages

ZernikeWFSImages

于 2015-03-03 发布 文件大小:189KB
0 224
下载积分: 1 下载次数: 14

代码说明:

  AOS公司提供的自适应光学相关泽尼克多项式代码,matlab(Adaptive optics related AOS Zernike polynomials code provided, matlab)

文件列表:

Z01_XTilt_0um.tif,14414,2012-12-18
Z01_XTilt_1um.tif,14454,2012-12-18
Z01_XTilt_2um.tif,14230,2012-12-18
Z02_YTilt_0um.tif,14414,2012-12-18
Z02_YTilt_1um.tif,14302,2012-12-18
Z02_YTilt_2um.tif,13854,2012-12-18
Z03_90dAstigmatism_0um.tif,14414,2012-12-18
Z03_90dAstigmatism_1um.tif,14264,2012-12-18
Z03_90dAstigmatism_2um.tif,14240,2012-12-18
Z04_Focus_0um.tif,14414,2012-12-18
Z04_Focus_1um.tif,14240,2012-12-18
Z04_Focus_2um.tif,14228,2012-12-18
Z05_45dAstigmatism_0um.tif,14414,2012-12-18
Z05_45dAstigmatism_1um.tif,14260,2012-12-18
Z05_45dAstigmatism_2um.tif,14228,2012-12-18
Z06_YTrefoil_0um.tif,14414,2012-12-18
Z06_YTrefoil_1um.tif,14260,2012-12-18
Z06_YTrefoil_2um.tif,14256,2012-12-18
Z07_YComa_0um.tif,14414,2012-12-18
Z07_YComa_1um.tif,14292,2012-12-18
Z07_YComa_2um.tif,14298,2012-12-18
Z08_XComa_0um.tif,14414,2012-12-18
Z08_XComa_1um.tif,14276,2012-12-18
Z08_XComa_2um.tif,14294,2012-12-18
Z09_XTrefoil_0um.tif,14414,2012-12-18
Z09_XTrefoil_1um.tif,14298,2012-12-18
Z09_XTrefoil_2um.tif,14270,2012-12-18
Z10_90dQuadrifoil_0um.tif,14414,2012-12-18
Z10_90dQuadrifoil_1um.tif,14296,2012-12-18
Z10_90dQuadrifoil_2um.tif,14266,2012-12-18
Z11_90d2ndOrderAstig_0um.tif,14414,2012-12-18
Z11_90d2ndOrderAstig_1um.tif,14264,2012-12-18
Z11_90d2ndOrderAstig_2um.tif,14246,2012-12-18
Z12_SphericalAberr._0um.tif,14414,2012-12-18
Z12_SphericalAberr._1um.tif,14206,2012-12-18
Z12_SphericalAberr._2um.tif,14230,2012-12-18
Z13_45d2ndOrderAstig_0um.tif,14414,2012-12-18
Z13_45d2ndOrderAstig_1um.tif,14144,2012-12-18
Z13_45d2ndOrderAstig_2um.tif,14244,2012-12-18
Z14_22_5dQuadrifoil_0um.tif,14414,2012-12-18
Z14_22_5dQuadrifoil_1um.tif,14312,2012-12-18
Z14_22_5dQuadrifoil_2um.tif,14272,2012-12-18

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

发表评论

0 个回复

  • MATLAB
    MATLAB学习的好资料,主要是matlab的一些命令学习……(MATLAB learning good information, mostly matlab learning some commands ... ...)
    2010-09-08 21:31:17下载
    积分:1
  • fit_ML_rayleigh
    fit_ML_rayleigh - Maximum Likelihood fit of the rayleigh distribution of i.i.d. samples!. Given the samples of a rayleigh distribution, the PDF parameter is found fits data to the probability of the form: p(r)=r*exp(-r^2/(2*s))/s with parameter: s format: result = fit_ML_rayleigh( x,hAx ) input: x - vector, samples with rayleigh distribution to be parameterized hAx - handle of an axis, on which the fitted distribution is plotted if h is given empty, a figure is created. output: result - structure with the fields s - fitted parameter CRB - Cram?r-Rao Bound for the estimator value RMS - RMS error of the estimation type- ML
    2011-02-09 19:10:54下载
    积分:1
  • dsp2
    说明:  应用matlab进行数字信号处理的一些源代码,希望对大家有帮助。(Matlab applications for digital signal processing of the source code, and I hope to be helpful.)
    2006-04-16 17:20:24下载
    积分:1
  • UKF_track
    说明:  对人体的图像序列进行unscented kalman filter 追踪,参考最经典的UKF算法编写,是学习UKF算法的比较入门的程序(Image sequences on the human body, unscented kalman filter for tracking, the most classical reference to the preparation of the UKF algorithm is a learning algorithm UKF procedure entry )
    2009-07-24 09:40:08下载
    积分:1
  • APES算法
    说明:  功率谱估计算法,很有效经典。非参数谱估计,APES算法,振幅与相位估计(Power spectrum estimation algorithm, very effective classic)
    2020-12-15 11:39:13下载
    积分:1
  • gafmax
    % [BestPop,Trace]=fmaxga(FUN,LB,UB,eranum,popsize,pcross,pmutation) % Finds a maximum of a function of several variables. % fmaxga solves problems of the form: % max F(X) subject to: LB <= X <= UB % BestPop--------最优的群体即为最优的染色体群 % Trace----------最佳染色体所对应的目标函数值 % FUN------------目标函数 % LB-------------自变量下限 % UB-------------自变量上限 % eranum---------种群的代数,取100--1000(默认1000) % popsize--------每一代种群的规模;此可取50--100(默认50) % pcross---------交叉的概率,此概率一般取0.5--0.85之间较好(默认0.8) % pmutation------变异的概率,该概率一般取0.05-0.2左右较好(默认0.1) % options--------1×2矩阵,options(1)=0二进制编码(默认0),option(1)~=0十进制编码,option(2)设定求解精度(默认1e-4)( [BestPop, Trace] = fmaxga (FUN, LB, UB, eranum, popsize, pcross, pmutation) Finds a maximum of a function of several variables. Fmaxga solves problems of the form: max F (X) subject to : LB <= X <= UB BestPop-------- optimal chromosome groups is the best group Trace---------- chromosome corresponding to the best objective function value FUN------------ objective function LB------------- variable lower limit since the UB------------- variable upper limit eranum--------- populations algebra, take 100- 1000 (default 1000) popsize-------- population size of each generation this desirable 50- 100 (default 50) pcross--------- crossover probability, the probability of a general check 0.5- 0.85 between the better (default 0.8) pmutation------ mutation probability, the probability of 0.05 general admission better about-0.2 (default 0.1) options-------- 1 × 2 matrix, options (1) = 0 binary code (default 0), option (1) ~ = 0 decimal coding, option (2 ) set accuracy (default 1e-4))
    2006-10-18 16:07:48下载
    积分:1
  • tikhonov
    整理的tikhonov算法。包含一般的以及迭代的。有详细算例。(Tikhonov algorithm finishing. Contains general and iteration. Detailed studies.)
    2021-05-16 19:30:08下载
    积分:1
  • AFD
    光伏并网发电系统有源频率漂移孤岛检测法(AFD)(active frequency drift(AFD) island detection method of photovotaic grid-connected generation system)
    2010-07-06 15:12:32下载
    积分:1
  • dataset
    the for clustering algorithms.
    2014-11-26 22:05:26下载
    积分:1
  • NarrowSignalMVDR
    经典窄带信号含有两个干扰源,最后绘制方向图(Classic narrowband signal contains two sources of interference, the pattern drawn last)
    2013-08-10 10:02:07下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载