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.
12 lines
333 B
12 lines
333 B
%--------------------------
|
|
% @Author: Jingqiao Hu
|
|
% @Date: 2021-05-18 23:02:33
|
|
% @LastEditTime: 2021-05-18 23:02:34
|
|
%--------------------------
|
|
function M = assembleM2(num_b, K, bezier_B)
|
|
k21 = K(num_b + 1 : end, 1 : num_b) * bezier_B;
|
|
k22 = K(num_b + 1 : end, num_b+1 : end);
|
|
% tic
|
|
M = - k22 \ k21;
|
|
% toc
|
|
end
|