bar_mesh5_3_4ele.m

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

M
17
字号
function  bar_mesh5_3_4ele
include_flags;



% Node:  1    2    3    4    5    6    7    8    9     
%---------------------------------------------------
x   =  [2.0  2.5  3.0  3.5  4.0  4.5  5.0   5.5  6.0];        % x coordinate  
y   =  2*x;                                                   % y is used only for the bar plot 

% connectivity array
IEN =  [1  3  5  7; 
        2  4  6  8; 
        3  5  7  9];

plotbar;

⌨️ 快捷键说明

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