贴一段zernike程序

function z = zernfun(n,m,r,theta,nflag)

%ZERNFUN Zernike functions of order N and frequency M on the unit circle.

%   Z = ZERNFUN(N,M,R,THETA) returns the Zernike functions of order N

%   and angular frequency M, evaluated at positions (R,THETA) on the

%   unit circle.  N is a vector of positive integers (including 0), and

%   M is a vector with the same number of elements as N.  Each element

%   k of M must be a positive integer, with possible values M(k) = -N(k)

%   to +N(k) in steps of 2.  R is a vector of numbers between 0 and 1,

%   and THETA is a vector of angles.  R and THETA must have the same

%   length.  The output Z is a matrix with one column for every (N,M)

%   pair, and one row for every (R,THETA) pair.

%

%   Z = ZERNFUN(N,M,R,THETA,'norm') returns the normalized Zernike

%   functions.  The normalization factor sqrt((2-delta(m,0))*(n+1)/pi),

%   with delta(m,0) the Kronecker delta, is chosen so that the integral

%   of (r * [Znm(r,theta)]^2) over the unit circle (from r=0 to r=1,

%   and theta=0 to theta=2*pi) is unity.  For the non-normalized

%   polynomials, max(Znm(r=1,theta))=1 for all [n,m].

%

%   The Zernike functions are an orthogonal basis on the unit circle.

%   They are used in disciplines such as astronomy, optics, and

%   optometry to describe functions on a circular domain.

%

%   The following table lists the first 15 Zernike functions.

%{Neither Noll, nor Malacara}

%       n    m    Zernike function           Normalization

%       --------------------------------------------------

%       0    0    1                                 1

%       1    1    r * cos(theta)                    2

%       1   -1    r * sin(theta)                    2

%       2   -2    r^2 * cos(2*theta)             sqrt(6)

%       2    0    (2*r^2 - 1)                    sqrt(3)

%       2    2    r^2 * sin(2*theta)             sqrt(6)

%       3   -3    r^3 * cos(3*theta)             sqrt(8)

%       3   -1    (3*r^3 - 2*r) * cos(theta)     sqrt(8)

%       3    1    (3*r^3 - 2*r) * sin(theta)     sqrt(8)

%       3    3    r^3 * sin(3*theta)             sqrt(8)

%       4   -4    r^4 * cos(4*theta)             sqrt(10)

%       4   -2    (4*r^4 - 3*r^2) * cos(2*theta) sqrt(10)

%       4    0    6*r^4 - 6*r^2 + 1              sqrt(5)

%       4    2    (4*r^4 - 3*r^2) * cos(2*theta) sqrt(10)

%       4    4    r^4 * sin(4*theta)             sqrt(10)

%       --------------------------------------------------

%

%   Example 1:

%

%       % Display the Zernike function Z(n=5,m=1)

%       x = -1:0.01:1;

%       [X,Y] = meshgrid(x,x);

%       [theta,r] = cart2pol(X,Y);

%       idx = r<=1;

%       z = nan(size(X));

%       z(idx) = zernfun(5,1,r(idx),theta(idx));

%       figure

%       pcolor(x,x,z), shading interp

%       axis square, colorbar

%       title('Zernike function Z_5^1(r,\theta)')

%

%   Example 2:

%

%       % Display the first 10 Zernike functions

%       x = -1:0.01:1;

%       [X,Y] = meshgrid(x,x);

%       [theta,r] = cart2pol(X,Y);

%       idx = r<=1;

%       z = nan(size(X));

%       n = [0  1  1  2  2  2  3  3  3  3];

%       m = [0 -1  1 -2  0  2 -3 -1  1  3];

%       Nplot = [4 10 12 16 18 20 22 24 26 28];

%       y = zernfun(n,m,r(idx),theta(idx));

%       figure('Units','normalized')

%       for k = 1:10

%           z(idx) = y(:,k);

%           subplot(4,7,Nplot(k))

%           pcolor(x,x,z), shading interp

%           set(gca,'XTick',[],'YTick',[])

%           axis square

%           title(['Z_{' num2str(n(k)) '}^{' num2str(m(k)) '}'])

%       end

%

%   See also ZERNPOL, ZERNFUN2.

%   Paul Fricker 11/13/2006

% Check and prepare the inputs:

% -----------------------------

n=16;m=16; r= 0:0.02:1;theta = 2*pi/51;theta = theta*(1:51);

if ( ~any(size(n)==1) ) || ( ~any(size(m)==1) )

error('zernfun:NMvectors','N and M must be vectors.')

end

if length(n)~=length(m)

error('zernfun:NMlength','N and M must be the same length.')

end

n = n(

;

m = m(

;

if any(mod(n-m,2))

error('zernfun:NMmultiplesof2', ...

'All N and M must differ by multiples of 2 (including 0).')

end

if any(m>n)

error('zernfun:MlessthanN', ...

'Each M must be less than or equal to its corresponding N.')

end

if any( r>1 | r<0 )

disp(['min(r) = ',num2str(min(r)),'; max(r) = ',num2str(max(r))]);

error('zernfun:Rlessthan1','All R must be between 0 and 1.')

end

if ( ~any(size(r)==1) ) || ( ~any(size(theta)==1) )

error('zernfun:RTHvector','R and THETA must be vectors.')

end

r = r(

;

theta = theta(

;

length_r = length(r);

if length_r~=length(theta)

error('zernfun:RTHlength', ...

'The number of R- and THETA-values must be equal.')

end

% Check normalization:

% --------------------

% if nargin==5 && ischar(nflag)

%     isnorm = strcmpi(nflag,'norm');

%     if ~isnorm

%         error('zernfun:normalization','Unrecognized normalization flag.')

%     end

% else

%     isnorm = false;

% end

%

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

% Compute the Zernike Polynomials

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

% Determine the required powers of r:

% -----------------------------------

m_abs = abs(m);

rpowers = [];

for j = 1:length(n)

rpowers = [rpowers m_abs(j):2:n(j)];

end

rpowers = unique(rpowers);

%b = unique(A) returns the same values as in A but with no repetitions. The

%resulting vector is sorted in ascending order. A can be a cell array of strings.

% Pre-compute the values of r raised to the required powers,

% and compile them in a matrix:

% -----------------------------

if rpowers(1)==0

rpowern = arrayfun(@(p)r.^p,rpowers(2:end),'UniformOutput',false);

rpowern = cat(2,rpowern{:});

%ds = cat(dim, ds1, ds2, ...) concatenates the dataset arrays ds1, ds2,

%... along dimension dim by calling the dataset/horzcat or dataset/vertcat method. dim must be 1 or 2.

rpowern = [ones(length_r,1) rpowern];

else

rpowern = arrayfun(@(p)r.^p,rpowers,'UniformOutput',false);

rpowern = cat(2,rpowern{:});

end

% Compute the values of the polynomials:

% --------------------------------------

y = zeros(length_r,length(n));

for j = 1:length(n)

s = 0

n(j)-m_abs(j))/2;

pows = n(j):-2:m_abs(j);

for k = length(s):-1:1

p = (1-2*mod(s(k),2))* ...

prod(2

n(j)-s(k)))/              ...

prod(2:s(k))/                     ...

prod(2

(n(j)-m_abs(j))/2-s(k)))/ ...

prod(2

(n(j)+m_abs(j))/2-s(k)));

%B = prod(A) returns the products along different dimensions

%of an array.

idx = (pows(k)==rpowers);

y(:,j) = y(:,j) + p*rpowern(:,idx);

end

end

%     if isnorm

%         y(:,j) = y(:,j)*sqrt((1+(m(j)~=0))*(n(j)+1)/pi);

%     end

% end

% END: Compute the Zernike Polynomials

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

% Compute the Zernike functions:

% ------------------------------

idx_pos = m>0;

idx_neg = m<0;

z = y;

if any(idx_pos)

z(:,idx_pos) = y(:,idx_pos).*sin(theta*m(idx_pos)');

end

if any(idx_neg)

z(:,idx_neg) = y(:,idx_neg).*cos(theta*m(idx_neg)');

end

% EOF zernfun

里面有一个arrayfun函数 我的matlab版本比较低  请问各位大侠  怎么把那一段改一下呢  或者求助一个arrayfun.m文件 7.1以上的版本应该都有 谢谢了

泽尼克多项式 matlab,zernike多项式 ---matlab程序 ---arrayfun.m函数相关推荐

  1. 【数学建模】基于matlab zernike泽尼克多项式仿真【含Matlab源码 1953期】

    一.获取代码方式 获取代码方式1: 完整代码已上传我的资源:[数学建模]基于matlab zernike泽尼克多项式仿真[含Matlab源码 1953期] 点击上面蓝色字体,直接付费下载,即可. 获取 ...

  2. Zernike多项式的Matlab代码

    1. 理论介绍: Zernike多项式[1](荷兰物理学家弗里茨·泽尔尼克)是定义在单位圆上且满足正交的多项式序列,其在极坐标下可写为: 其中, 是第 j 阶Zernike模式,0≤r≤1,0≤θ≤2 ...

  3. MATLAB新手简明使用教程(七)——使用matlab建立多项式以及求导,商求导乘积求导等——新手来看,保证看懂。

    前期回顾 上一期中,我们学了下面的知识: 定积分的基本概念和一些简单的几何意义. 使用 int 函数计算不定积分. 使用 int 函数计算定积分. 本期内容 本期我打算给大家介绍一下使用matlab对 ...

  4. matlab将多项式通分,matlab多项式因式分解

    配方, 如何用 matlab 进行多项式运算 (1) 合并同类项 syms 表达式中包含的变量 collect(表达式,指定的变量) (2)因式分解 syms 表达式中包含的变量 factor(表达式 ...

  5. 基于MATLAB的多项式数据拟合方法研究-毕业论文

    摘要:本论文先介绍了多项式数据拟合的相关背景,以及对整个课题做了一个完整的认识.接下来对拟合模型,多项式数学原理进行了详细的讲解,通过对文献的阅读以及自己的知识积累对原理有了一个系统的认识.介绍多项式 ...

  6. 5.2 matlab多项式计算(多项式的四则运算、求导、求值、求根)

    1.多项式的表示 在MATLAB中创建多项式向量时,注意三点: (1)多项式系数向量的顺序是从高到低. (2)多项式系数向量包含0次项系数,所以其长度为多项式最高次数加1. (3)如果有的项没有,系数 ...

  7. 【多元域除法】多项式除法电路原理及MATLAB详解

    关注公号[逆向通信猿]更精彩!!! 关于二元域上的两个元素的加法和乘法.多项式除法,在之前的博客 [有限域除法]二元多项式除法电路原理及MATLAB详解 子程序:sub_poly_div.m [有限域 ...

  8. matlab对多项式求导,matlab中多项式求导

    1 0.5 0 -0.5 -1 -1.5 -2 -2 -1.5 -1 -0.5 0 0.5 1 1.5 2 4.对比用多项式函数的 polyder 函数及符号函数中的 diff 函数,求导 x2+2x ...

  9. matlab有限域多项式除法_MATLAB极小值优化

    11.1.2  极小值优化 1.标量最小值优化 求解单变量最优化问题的方法有多种,根据目标函数是否需要求导,可以分为两类,即直接法和间接法.直接法不需要对目标函数进行求导,而间接法则需要用到目标函数的 ...

最新文章

  1. 530 5.7.1 Client was not authenticated
  2. Lua 5.1.1 源代码阅读笔记
  3. IPv6环境下路由器支持域名登录
  4. 区块链项目开发:双因素身份验证应用程序如何帮助保护你的加密帐户
  5. 如何使能linux vivid
  6. Docker使用概览图
  7. R语言-数据清洗-缺失值处理
  8. Amazon验证码机器算法识别
  9. PHP: ThinkPHP获取客户端IP地址
  10. Shiro 入门教程
  11. everest任务栏设置
  12. 字节跳动工作总结:工作一年的真心话
  13. 网络安全等保/安全合规总结
  14. 港科夜闻|国务院港澳办主任夏宝龙在香港科大考察期间,表示对学校开展创科工作的鼓励及希望...
  15. 节气朔望时刻计算和日食月食预测
  16. H5游戏开发-面向对象编程
  17. 怎样在Winform窗体中嵌入Web浏览器
  18. STM32CUBEMX_SDIO和FATFS_读写SD卡
  19. js 和php 互操cookie 作用域
  20. 这篇数据库设计规范建议,我必须分享给你

热门文章

  1. 不容按钮、下拉框 执行同一个函数或者同一种函数的用法
  2. php自动验证,ThinkPHP 自动验证及验证规则详解
  3. 7-110 吃火锅 (15 分)
  4. 活动目录管理中常用的脚本(一)
  5. mybatis中association和collection的column传入多个参数值
  6. [CodePlus 2017 11月赛]晨跑 题解(辗转相除法求GCD)
  7. IOC与DI(xml 配置)
  8. Python3 casefold() 方法
  9. 【HDU5187】contest
  10. HTML5中微数据在搜索引擎中的使用举例