-
Notifications
You must be signed in to change notification settings - Fork 21
/
g2.m
executable file
·26 lines (23 loc) · 885 Bytes
/
g2.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
function str=g2
% G2 Matrix structural analysis
%
% G2 is a Matlab framework for matrix structural analysis.
%
% Matlab 5.0 or greater is required to use G2. The directory
% structure is important for proper operation. The G2 directory
% must have a subdirectory '@model' and ore more subdirectories
% '@elementn' where n= 1, 2 , 3 .... Analysis procudedures are
% normally in the G2 directory.
%
% 'help model' gives information about creating a model. Use
% 'help elementn' where n=1,2,3 ... for information about the
% elements.
% G2 - Matrix Structural Analysis with Matlab
% Version 0.1
% University of California, Berkeley
% Copyright 1999, Gregory L. Fenves
% --------------------------------------
g2version = '0.1 (UC Berkeley, CE 221)';
str = sprintf(['G2 - MATRIX STRUCTURAL ANALYSIS WITH MATLAB ' ...
version '\nVERSION: ' g2version ]);