4 lines
71 B
Matlab
4 lines
71 B
Matlab
function [K] = getStiffnessMatrix(leg, J)
|
|
K = leg.k.ax*(J'*J);
|
|
end
|