?? planetrussinclinedsupport.m
字號:
function y = PlaneTrussInclinedSupport(T,i,alpha)
%PlaneTrussInclinedSupport This function calculates the
% tranformation matrix T of the inclined
% support at node i with angle of
% inclination alpha (in degrees).
x = alpha*pi/180;
T(2*i-1,2*i-1) = cos(x);
T(2*i-1,2*i) = sin(x);
T(2*i,2*i-1) = -sin(x) ;
T(2*i,2*i) = cos(x);
y = T;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -