mirror of
http://43.156.76.180:8026/YuuMJ/EukPhylo.git
synced 2025-12-28 13:50:26 +08:00
15 lines
319 B
Matlab
15 lines
319 B
Matlab
function du=dphiC(A,D,CC)
|
|
% compute the emperical derivative of LLC WR to the angules
|
|
delta=0.00001;
|
|
ll0=LLC(U0,D,CC);
|
|
disp ('not implimented yet');
|
|
|
|
% for i=1:length(U0),
|
|
% for j=1:length(U0),
|
|
% Utmp=U0;
|
|
% Utmp(i,j)=Utmp(i,j)+delta;
|
|
% llij=LLC(Utmp,D,CC);
|
|
% du(i,j)=(llij-ll0)/delta;
|
|
% end;
|
|
% end;
|