License file: add files copyrighted by Tom Minka

time-shift
Sébastien Villemot 2019-03-20 16:56:00 +01:00
parent 44b50d41ae
commit 300b29dd95
No known key found for this signature in database
GPG Key ID: 2CECE9350ECEBE4A
3 changed files with 9 additions and 2 deletions

View File

@ -85,6 +85,11 @@ Copyright: 2016 Benjamin Born and Johannes Pfeifer
2016 Dynare Team
License: GPL-3+
Files: matlab/commutation.m matlab/duplication.m
Copyright: 1997 Tom Minka <minka@microsoft.com>
2019 Dynare Team
License: GPL-3+
Files: matlab/gsa/Morris_Measure_Groups.m
matlab/gsa/Sampling_Function_2.m
Copyright: 2005 European Commission

View File

@ -19,6 +19,7 @@ function k = commutation(n, m, sparseflag)
% This function calls
% * vec (embedded)
% =========================================================================
% Copyright (C) 1997 Tom Minka <minka@microsoft.com>
% Copyright (C) 2019 Dynare Team
%
% This file is part of Dynare.
@ -68,4 +69,4 @@ function V = vec(A)
V = A(:);
end
end
end

View File

@ -13,6 +13,7 @@ function [Dp,DpMPinv] = duplication(p)
% This function is called by
% * get_identification_jacobians.m (previously getJJ.m)
% =========================================================================
% Copyright (C) 1997 Tom Minka <minka@microsoft.com>
% Copyright (C) 2019 Dynare Team
%
% This file is part of Dynare.
@ -47,4 +48,4 @@ end
if nargout > 1
DpMPinv = (transpose(Dp)*Dp)\transpose(Dp);
end
end