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.
4 lines
159 B
4 lines
159 B
1 year ago
|
function J = TdCjacobian(ctrlpoints,ubar,d)
|
||
|
pt=TdCReval_dt(ctrlpoints,ubar,d);
|
||
|
J=reshape(pt(1,1,:).*pt(2,2,:)-pt(1,2,:).*pt(2,1,:),size(ubar,1),1);
|
||
|
end
|