forked from wozy13/DIAMOND
-
Notifications
You must be signed in to change notification settings - Fork 0
/
editdof.m
65 lines (56 loc) · 1.83 KB
/
editdof.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
%
% Name: editdof.m
%
% Usage: strout = editdof(strin)
%
% Edits the DIAMOND DOF lists
%
%
% Version SWD970521
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% This matlab source code was originally %
% developed as part of "DIAMOND" at %
% Los Alamos National Laboratory. It may %
% be copied, modified, and distributed in %
% any form, provided: %
% a) This notice accompanies the files and %
% appears near the top of all source %
% code files. %
% b) No payment or commercial services are %
% received in exchange for the code. %
% %
% Original copyright is reserved by the %
% Regents of the University of California, %
% in addition to Scott W. Doebling, Phillip %
% J. Cornwell, Erik G. Straser, and Charles %
% R. Farrar. %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Define uicontrols
%
hesfig = figure('Name','DIAMOND: EditDOF', ...
'units','normal',...
'NumberTitle','off', ...
'menubar','none',...
'Position',[0.25 0.4 0.5 0.25]);
hestitle = uicontrol('style','text',...
'position',[0.02 0.90 0.96 0.10],...
'horizontalalignment','left');
hesstr = uicontrol('style','edit',...
'position',[0.02 0.15 0.96 0.75],...
'horizontalalignment','left',...
'max',2);
uicontrol('style','pushbutton',...
'position',[0.80 0.01 0.15 0.14],...
'string','Close',...
'callback',[...
' temp = str2num(get(hesstr,''string'')); respDOF = temp(:,2:3); listdof,',...
'delete(hesfig)']);
%
% Set title string and editor string
%
titlestr = chantstr(1,1:end-1);
bodystr = num2str([[1:size(respDOF,1)]' respDOF]);
set(hestitle,'string',titlestr)
set(hesstr,'string',bodystr)