pupilsizeangle

The pupilsizeangle function returns the angle dependend apparent pupil size factor, based on the values provided by Wyszecki & Stiles, see reference.

Usage:

 A = pupilsizeangle(tilt_angle,interp_method)

Where:

ParameterDescription
AReturns the corrsponding appearent pupil size factor, scalar or vector.
tilt_angleDefines the tilt angle(s), scalar or vector.
interp_methodDefines the interpolation method, default: linear

Example:

Plot appearant pupil size factor depending on tilt angle:

t = 0:90;
a = pupilsizeangle(t);

plot(t,a)
grid on
xlabel('Tilt angle in degree')
ylabel('Apparent pupil size factor')

Result:

Reference:

Wyszecki & Stiles 2000, Color science: “Concepts and methods, quantitative data and formulas”. 2nd edition. New York, John Wiley & Sons. ISBN: 978-0-471-39918-6


Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.