Revision 495
(checked in by cbc, 12 years ago)
|
Initial import of Stark code.
|
Line | |
---|
1 |
% |
---|
2 |
% load in nod, ele, and bat files |
---|
3 |
% |
---|
4 |
[in,x,y,z,bnd]=loadgrid('g2s'); |
---|
5 |
size(in); |
---|
6 |
ne=ans(1); |
---|
7 |
size(x); |
---|
8 |
nn=ans(1); |
---|
9 |
bndo=plotbnd(x,y,bnd); |
---|
10 |
set(bndo,'Color','black') |
---|
11 |
cval=[60 100 200]; |
---|
12 |
h=lcontour2(in,x,y,z,cval); |
---|
13 |
set(h,'Color','black') |
---|
14 |
hold on |
---|
15 |
% |
---|
16 |
% |
---|
17 |
% |
---|
18 |
set(gca,'XLim',[ 140000 440000]); |
---|
19 |
set(gca,'YLim',[-260000 10000]); |
---|
20 |
set(gca,'Box','on'); |
---|
21 |
axis('equal') |
---|
22 |
set(gca,'XTick',[]); |
---|
23 |
set(gca,'YTick',[]); |
---|