bmatrixbeam.m

来自「The Finite Element Method Usign MATLAB.p」· M 代码 · 共 11 行

M
11
字号
% Derivative of the shape functions in the natural coordinate s
function B = BmatrixBeam(s,xe)

     L=xe(2)-xe(1);
     B(1)=3/2*s;
     B(2)=L*(3/4*s-1/4);
     B(3)=-3/2*s;
     B(4)= L*(3/4*s+1/4);
    
     
   

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?