Home > SPlaC v1_0 > Mie > PWE > PweIncEabn1.m

PweIncEabn1

PURPOSE ^

Calculates a_{n,1}, and b_{n,1} for n=1:nNmax for the incident PWE field

SYNOPSIS ^

function stIncEabn1=PweIncEabn1(nNmax)

DESCRIPTION ^

 Calculates a_{n,1}, and b_{n,1} for n=1:nNmax for the incident PWE field
 using Eqs. H.74 and H.75.

 Parameters:
 - nNmax:  integer scalar
 - s:      column vector [L x 1]
           wavelength-dependent relative refractive index (Eq. H.45)
 - x:      column vector [L x 1]
           wavelength-dependent x=kM*a (Eq. H.45)

 Returns: structure with 2 fields
          each a vector [1 x nNmax]
 - stIncEabn1.an1: a_{n,1}
 - stIncEabn1.bn1: b_{n,1}

 This file is part of the SPlaC v1.0 package (copyright 2008)
 Check the README file for further information

EXAMPLE OF OUTPUT ^

Example figure output

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 n=1:nNmax;
0002 stIncEabn1.bn1 = i.^(n+1) .* sqrt(pi*(2*n+1));
0003 stIncEabn1.an1 = stIncEabn1.bn1;

This web page is part of the SPlaC package © 2008. Contact: Eric Le Ru
Generated on Wed 03-Dec-2008 11:10:14 by m2html © 2003 (adapted)