You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
240 B
11 lines
240 B
function vals= dCR_eval(CPs,t)
|
|
tt=dC_eval(CPs,t);
|
|
if size(CPs,1)==3
|
|
vals=tt(:,1:2)./tt(:,3);
|
|
elseif size(CPs,1)==4
|
|
vals=tt(:,1:3)./tt(:,4);
|
|
end
|
|
% if any(t==1)
|
|
% vals(t==1,:)=CPs(1:2,end-1)';
|
|
% end
|
|
end
|