frudawski

ciespecagecorr

The ciespecagecorr function returns the age dependent ocular spectral transmission correction factors according to CIE S026:2018. Any errors in the data set or in results generated with the Lighting Toolbox are not in the liability of the CIE nor me, see licence.

Usage:

[T,lam] = ciespecagecorr(age,lam)

Where:

ParameterDescription
TReturns the age dependent ocular transmission factors, vector or matrix.
lam
(optional)
Specifies the corresponding wavelengths, vector. Default: 300:5:700.
ageSpecifies the age, scalar or vector.
Examples

Plot the spectral ocular transmission correction factors for a 50-year-old observer:

lam = 380:780;
c50 = ciespecagecorr(50,lam);

plot(lam,c50)
grid on
xlim([380 780])
xlabel('\lambda in nm')
ylabel('relative spectral transmission correction')
title('spectral ocular transmission correction - 50 y')

Result:

Plot the spectral ocular transmission correction factors for observers aged 10 to 100 in 10 years steps:

age = 10:10:100;
lam = 380:780;
t = ciespecagecorr(age,lam);

c = colors(length(age));
plotorder(lam,t,c);
grid on
xlim([380 780])
xlabel('\lambda in nm')
ylabel('relative spectral transmission correction')
title('spectral ocular transmission correction')
legend('10 y','20 y','30 y','40 y','50 y','60 y','70 y','80 y','90 y','100 y')
specbar(380:50:780)

See also: colors, specbar

Result:

References

CIE 203:2012 (incl. Erratum): CIE 203 A COMPUTERIZED APPROACH TO TRANSMISSION AND ABSORPTION CHARACTERISTICS OF THE HUMAN EYE. Commission International de l’Éclairage (CIE), Vienna Austria, 2012, ISBN: 978-3-902842-43-5.

CIE S 026/E:2018: CIE System for Metrology of Optical Radiation for ipRGC-Influenced Responses to Light. Commission International de l’Éclairage (CIE), Vienna Austria, 2018, (DOI: 10.25039/S026.2018).

Leave a comment

* I accept the use of cookies as well as the terms in the privacy policy. I accept that data provided by me is processed and saved. I know that comments are saved and published after review.