forked from wozy13/DIAMOND
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandact.m
52 lines (50 loc) · 1.68 KB
/
handact.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
function onHndlVector=handact(offHndlVector,hndlMatrix,ihndl)
%
% Name: handact
%
% Usage: onHndlVector=handact(offHndlVector,hndlMatrix,ihndl)
%
% this function to turn off handles and turn on new ones
%
% ihndl=1: Plot buttons
% ihndl=2: Peak picking buttons
% ihndl=3: Rational Polynomial buttons
% ihndl=4: ERA buttons
% ihndl=5: Damage index methods buttons
%
% Version SWD960625
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% 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. %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
if exist('offHndlVector')~=1,
offHndlVector=hndlMatrix(1,:);
offHndlVector(find(offHndlVector==0))=[];
end
onHndlVector=hndlMatrix(ihndl,:);
onHndlVector(find(onHndlVector==0))=[];
for i=1:length(offHndlVector)
if ishandle(offHndlVector(i))==1
hideall(offHndlVector(i))
end;
end;
for i=1:length(onHndlVector)
if ishandle(onHndlVector(i))==1
showall(onHndlVector(i))
end;
end;