File: LjgToXYZ.m

package info (click to toggle)
psychtoolbox-3 3.0.15.20190207.dfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 101,848 kB
  • sloc: ansic: 174,133; cpp: 11,232; objc: 4,832; sh: 1,874; python: 1,047; php: 384; makefile: 189; java: 113
file content (61 lines) | stat: -rw-r--r-- 1,665 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
function XYZ = LjgToXYZ(Ljg)
% XYZ = LjgToXYZ(Ljg)
%
% Convert OSA Ljg to XYZ (10 degree).  Works by using numerical
% search to invert XYZToLjg.  See XYZToLjg for details on
% formulae used.  See also OSAUCSTest.
%
% This can return imaginary values if you pass XYZ values
% that are outside reasonable physical gamut limits.
%
% 3/27/01  dhb      Wrote it.
% 3/4/05   dhb	    Handle new version of optimization toolbox, too.
% 9/23/12  dhb, ms  Update options for current Matlab versions.

% Check for needed optimization toolbox, and version.
if (exist('fmincon') == 2)
    % Search options
    if (verLessThan('optim','4.1'))
        error('Your version of the optimization toolbox is too old.  Update it.');
    end
    options = optimset('fmincon');
    options = optimset(options,'Diagnostics','off','Display','off','LargeScale','off','Algorithm','active-set');
    
	% Search bounds -- XYZ must be positive.
	vlb = zeros(3,1);
	vub = [200 100 200]';
	
	% Do the search for each passed value.
	XYZ = zeros(size(Ljg));
	n = size(XYZ,2);
	for i = 1:n
		x0 = xyYToXYZ([.28 .28 30]');
		x = fmincon('LjgToXYZFun',x0,[],[],[],[],vlb,vub,[],options,Ljg(:,i));
		XYZ(:,i) = x;
	end

elseif (exist('constr') == 2)
	% Search options
	options = foptions;
	options(1) = 0;
	
	% Search bounds -- XYZ must be positive.
	vlb = zeros(3,1);
	vub = [200 100 200]';
	
	% Do the search for each passed value.
	XYZ = zeros(size(Ljg));
	n = size(XYZ,2);
	for i = 1:n
		x0 = xyYToXYZ([.28 .28 30]');
		x = constr('LjgToXYZFun',x0,options,vlb,vub,[],Ljg(:,i));
		XYZ(:,i) = x;
	end


else
	error('LjgToXYZ requires the optional Matlab Optimization Toolbox from Mathworks');
end