File talk:CIE CRI TCS chromaticities.svg

From Wikimedia Commons, the free media repository
Jump to navigation Jump to search

Source[edit]

TCS=[40.9 51.0 26.3;
    61.1 28.8 57.9;
    81.6 -4.2 80.3;
    72 -29.4 58.9;
    55.7 -43.4 35.6;
    51.7 -26.4 -24.6;
    30 23.2 -49.6;
    51 47.3 -13.8;
    68.7 14.2 17.4;
    63.9 11.7 17.3];
colors=applycform(TCS,makecform('lab2srgb'));
hold; grid;
for i=1:10
 plot(TCS(i,2),TCS(i,3),'o','MarkerFaceColor',colors(i,:),'MarkerSize',10);
 text(TCS(i,2),TCS(i,3),strcat('TCS','0'+i,'*'))
end