Problem 1476. Radial Zernike polynomials

Given an integer n ≥ 0 and an integer m ≥ 0, generate the radial Zernike polynomial of radial degree n and azimuthal degree m. You may assume that mod(n-m,2)==0 and mn.

Examples:

 radialZernike(0,0)
 ans =
     1
 radialZernike(1,1)
 ans =
     1     0
 radialZernike(2,0)
 ans =
     2     0    -1
 radialZernike(2,2)
 ans =
     1     0     0

Neither string operations nor interpolations are allowed!

Solution Stats

52.21% Correct | 47.79% Incorrect
Last Solution submitted on Mar 06, 2024

Problem Comments

Solution Comments

Show comments


Problem Recent Solvers54

Problem Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!