1
0
Fork 0
mirror of https://github.com/MillironX/beefblup.git synced 2024-11-13 03:03:08 +00:00

Removed null observations from incidence matrix

This commit is contained in:
Thomas A. Christensen II 2018-09-28 09:12:24 -06:00
parent bd44916781
commit dfddabde76

View file

@ -187,6 +187,10 @@ Y = cell2mat(data(:, 5));
% The identity matrix for random effects
Z = eye(numanimals, numanimals);
% Remove items where there is no data
nullobs = find(isnan(Y));
Z(nullobs, nullobs) = 0;
% Prompt for heritability
h2 = input('What is the heritability for this trait? >> ');
lambda = (1-h2)/h2;