source: MML/trunk/machine/SOLEIL/Booster/applications/orbitx1.m @ 4

Last change on this file since 4 was 4, checked in by zhangj, 11 years ago

Initial import--MML version from SOLEIL@2013

File size: 29.0 KB
Line 
1function varargout = orbitx1(varargin)
2% ORBITX1 M-file for orbitx1.fig
3%      ORBITX1, by itself, creates a new ORBITX1 or raises the existing
4%      singleton*.
5%
6%      H = ORBITX1 returns the handle to a new ORBITX1 or the handle to
7%      the existing singleton*.
8%
9%      ORBITX1('CALLBACK',hObject,eventData,handles,...) calls the local
10%      function named CALLBACK in ORBITX1.M with the given input arguments.
11%
12%      ORBITX1('Property','Value',...) creates a new ORBITX1 or raises the
13%      existing singleton*.  Starting from the left, property value pairs are
14%      applied to the GUI before orbitx1_OpeningFunction gets called.  An
15%      unrecognized property name or invalid value makes property application
16%      stop.  All inputs are passed to orbitx1_OpeningFcn via varargin.
17%
18%      *See GUI Options on GUIDE's Tools menu.  Choose "GUI allows only one
19%      instance to run (singleton)".
20%
21% See also: GUIDE, GUIDATA, GUIHANDLES
22
23% Copyright 2002-2003 The MathWorks, Inc.
24
25% Edit the above text to modify the response to help orbitx1
26
27% Last Modified by GUIDE v2.5 06-Dec-2005 10:01:24
28
29% Begin initialization code - DO NOT EDIT
30gui_Singleton = 1;
31gui_State = struct('gui_Name',       mfilename, ...
32                   'gui_Singleton',  gui_Singleton, ...
33                   'gui_OpeningFcn', @orbitx1_OpeningFcn, ...
34                   'gui_OutputFcn',  @orbitx1_OutputFcn, ...
35                   'gui_LayoutFcn',  [] , ...
36                   'gui_Callback',   []);
37if nargin && ischar(varargin{1})
38    gui_State.gui_Callback = str2func(varargin{1});
39end
40
41if nargout
42    [varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
43else
44    gui_mainfcn(gui_State, varargin{:});
45end
46% End initialization code - DO NOT EDIT
47
48
49% --- Executes just before orbitx1 is made visible.
50function orbitx1_OpeningFcn(hObject, eventdata, handles, varargin)
51% This function has no output args, see OutputFcn.
52% hObject    handle to figure
53% eventdata  reserved - to be defined in a future version of MATLAB
54% handles    structure with handles and user data (see GUIDATA)
55% varargin   command line arguments to orbitx1 (see VARARGIN)
56
57% Choose default command line output for orbitx1
58handles.output = hObject;
59
60% Update handles structure
61guidata(hObject, handles);
62
63% UIWAIT makes orbitx1 wait for user response (see UIRESUME)
64% uiwait(handles.figure1);
65
66
67% --- Outputs from this function are returned to the command line.
68function varargout = orbitx1_OutputFcn(hObject, eventdata, handles)
69% varargout  cell array for returning output args (see VARARGOUT);
70% hObject    handle to figure
71% eventdata  reserved - to be defined in a future version of MATLAB
72% handles    structure with handles and user data (see GUIDATA)
73
74% Get default command line output from handles structure
75varargout{1} = handles.output;
76
77
78% --- Executes on slider movement.
79function slider1_Callback(hObject, eventdata, handles)
80% hObject    handle to slider1 (see GCBO)
81% eventdata  reserved - to be defined in a future version of MATLAB
82% handles    structure with handles and user data (see GUIDATA)
83
84% Hints: get(hObject,'Value') returns position of slider
85%        get(hObject,'Min') and get(hObject,'Max') to determine range of slider
86
87set(handles.edit1,'String',...
88    num2str(get(handles.slider1,'Value')));
89
90% --- Executes during object creation, after setting all properties.
91function slider1_CreateFcn(hObject, eventdata, handles)
92% hObject    handle to slider1 (see GCBO)
93% eventdata  reserved - to be defined in a future version of MATLAB
94% handles    empty - handles not created until after all CreateFcns called
95
96% Hint: slider controls usually have a light gray background.
97if isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
98    set(hObject,'BackgroundColor',[.9 .9 .9]);
99end
100
101
102% --- Executes on slider movement.
103function slider2_Callback(hObject, eventdata, handles)
104% hObject    handle to slider2 (see GCBO)
105% eventdata  reserved - to be defined in a future version of MATLAB
106% handles    structure with handles and user data (see GUIDATA)
107
108% Hints: get(hObject,'Value') returns position of slider
109%        get(hObject,'Min') and get(hObject,'Max') to determine range of slider
110set(handles.edit2,'String',...
111    num2str(get(handles.slider2,'Value')));
112
113% --- Executes during object creation, after setting all properties.
114function slider2_CreateFcn(hObject, eventdata, handles)
115% hObject    handle to slider2 (see GCBO)
116% eventdata  reserved - to be defined in a future version of MATLAB
117% handles    empty - handles not created until after all CreateFcns called
118
119% Hint: slider controls usually have a light gray background.
120if isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
121    set(hObject,'BackgroundColor',[.9 .9 .9]);
122end
123
124
125
126function edit1_Callback(hObject, eventdata, handles)
127% hObject    handle to edit1 (see GCBO)
128% eventdata  reserved - to be defined in a future version of MATLAB
129% handles    structure with handles and user data (see GUIDATA)
130
131% Hints: get(hObject,'String') returns contents of edit1 as text
132%        str2double(get(hObject,'String')) returns contents of edit1 as a double
133
134
135% --- Executes during object creation, after setting all properties.
136function edit1_CreateFcn(hObject, eventdata, handles)
137% hObject    handle to edit1 (see GCBO)
138% eventdata  reserved - to be defined in a future version of MATLAB
139% handles    empty - handles not created until after all CreateFcns called
140
141% Hint: edit controls usually have a white background on Windows.
142%       See ISPC and COMPUTER.
143if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
144    set(hObject,'BackgroundColor','white');
145end
146
147
148
149function edit2_Callback(hObject, eventdata, handles)
150% hObject    handle to edit2 (see GCBO)
151% eventdata  reserved - to be defined in a future version of MATLAB
152% handles    structure with handles and user data (see GUIDATA)
153
154% Hints: get(hObject,'String') returns contents of edit2 as text
155%        str2double(get(hObject,'String')) returns contents of edit2 as a double
156
157
158% --- Executes during object creation, after setting all properties.
159function edit2_CreateFcn(hObject, eventdata, handles)
160% hObject    handle to edit2 (see GCBO)
161% eventdata  reserved - to be defined in a future version of MATLAB
162% handles    empty - handles not created until after all CreateFcns called
163
164% Hint: edit controls usually have a white background on Windows.
165%       See ISPC and COMPUTER.
166if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
167    set(hObject,'BackgroundColor','white');
168end
169
170
171% --- Executes on button press in pushbutton1.
172function pushbutton1_Callback(hObject, eventdata, handles)
173% hObject    handle to pushbutton1 (see GCBO)
174% eventdata  reserved - to be defined in a future version of MATLAB
175% handles    structure with handles and user data (see GUIDATA)
176
177
178if (get(handles.BPM1,'Value') == 1)
179    sprintf('ok')
180end
181   
182r=get(handles.slider1,'Value');
183plot(randn(1,22)*r);
184
185
186
187
188%%%%%%%%%% liste BPM et correcteurs %%%%%%%%%%%%%%%%%%%%%
189
190
191
192
193
194
195% --- Executes on button press in checkbox1.
196function BPM1_Callback(hObject, eventdata, handles)
197% hObject    handle to checkbox1 (see GCBO)
198% eventdata  reserved - to be defined in a future version of MATLAB
199% handles    structure with handles and user data (see GUIDATA)
200
201% Hint: get(hObject,'Value') returns toggle state of checkbox1
202
203
204% --- Executes on button press in checkbox2.
205function checkbox2_Callback(hObject, eventdata, handles)
206% hObject    handle to checkbox2 (see GCBO)
207% eventdata  reserved - to be defined in a future version of MATLAB
208% handles    structure with handles and user data (see GUIDATA)
209
210% Hint: get(hObject,'Value') returns toggle state of checkbox2
211
212
213% --- Executes on button press in checkbox3.
214function checkbox3_Callback(hObject, eventdata, handles)
215% hObject    handle to checkbox3 (see GCBO)
216% eventdata  reserved - to be defined in a future version of MATLAB
217% handles    structure with handles and user data (see GUIDATA)
218
219% Hint: get(hObject,'Value') returns toggle state of checkbox3
220
221
222% --- Executes on button press in checkbox4.
223function checkbox4_Callback(hObject, eventdata, handles)
224% hObject    handle to checkbox4 (see GCBO)
225% eventdata  reserved - to be defined in a future version of MATLAB
226% handles    structure with handles and user data (see GUIDATA)
227
228% Hint: get(hObject,'Value') returns toggle state of checkbox4
229
230
231% --- Executes on button press in checkbox5.
232function checkbox5_Callback(hObject, eventdata, handles)
233% hObject    handle to checkbox5 (see GCBO)
234% eventdata  reserved - to be defined in a future version of MATLAB
235% handles    structure with handles and user data (see GUIDATA)
236
237% Hint: get(hObject,'Value') returns toggle state of checkbox5
238
239
240% --- Executes on button press in checkbox6.
241function checkbox6_Callback(hObject, eventdata, handles)
242% hObject    handle to checkbox6 (see GCBO)
243% eventdata  reserved - to be defined in a future version of MATLAB
244% handles    structure with handles and user data (see GUIDATA)
245
246% Hint: get(hObject,'Value') returns toggle state of checkbox6
247
248
249% --- Executes on button press in checkbox7.
250function checkbox7_Callback(hObject, eventdata, handles)
251% hObject    handle to checkbox7 (see GCBO)
252% eventdata  reserved - to be defined in a future version of MATLAB
253% handles    structure with handles and user data (see GUIDATA)
254
255% Hint: get(hObject,'Value') returns toggle state of checkbox7
256
257
258% --- Executes on button press in checkbox8.
259function checkbox8_Callback(hObject, eventdata, handles)
260% hObject    handle to checkbox8 (see GCBO)
261% eventdata  reserved - to be defined in a future version of MATLAB
262% handles    structure with handles and user data (see GUIDATA)
263
264% Hint: get(hObject,'Value') returns toggle state of checkbox8
265
266
267% --- Executes on button press in checkbox9.
268function checkbox9_Callback(hObject, eventdata, handles)
269% hObject    handle to checkbox9 (see GCBO)
270% eventdata  reserved - to be defined in a future version of MATLAB
271% handles    structure with handles and user data (see GUIDATA)
272
273% Hint: get(hObject,'Value') returns toggle state of checkbox9
274
275
276% --- Executes on button press in checkbox10.
277function checkbox10_Callback(hObject, eventdata, handles)
278% hObject    handle to checkbox10 (see GCBO)
279% eventdata  reserved - to be defined in a future version of MATLAB
280% handles    structure with handles and user data (see GUIDATA)
281
282% Hint: get(hObject,'Value') returns toggle state of checkbox10
283
284
285% --- Executes on button press in checkbox11.
286function checkbox11_Callback(hObject, eventdata, handles)
287% hObject    handle to checkbox11 (see GCBO)
288% eventdata  reserved - to be defined in a future version of MATLAB
289% handles    structure with handles and user data (see GUIDATA)
290
291% Hint: get(hObject,'Value') returns toggle state of checkbox11
292
293
294% --- Executes on button press in checkbox12.
295function checkbox12_Callback(hObject, eventdata, handles)
296% hObject    handle to checkbox12 (see GCBO)
297% eventdata  reserved - to be defined in a future version of MATLAB
298% handles    structure with handles and user data (see GUIDATA)
299
300% Hint: get(hObject,'Value') returns toggle state of checkbox12
301
302
303% --- Executes on button press in checkbox14.
304function checkbox14_Callback(hObject, eventdata, handles)
305% hObject    handle to checkbox14 (see GCBO)
306% eventdata  reserved - to be defined in a future version of MATLAB
307% handles    structure with handles and user data (see GUIDATA)
308
309% Hint: get(hObject,'Value') returns toggle state of checkbox14
310
311
312% --- Executes on button press in checkbox15.
313function checkbox15_Callback(hObject, eventdata, handles)
314% hObject    handle to checkbox15 (see GCBO)
315% eventdata  reserved - to be defined in a future version of MATLAB
316% handles    structure with handles and user data (see GUIDATA)
317
318% Hint: get(hObject,'Value') returns toggle state of checkbox15
319
320
321% --- Executes on button press in checkbox16.
322function checkbox16_Callback(hObject, eventdata, handles)
323% hObject    handle to checkbox16 (see GCBO)
324% eventdata  reserved - to be defined in a future version of MATLAB
325% handles    structure with handles and user data (see GUIDATA)
326
327% Hint: get(hObject,'Value') returns toggle state of checkbox16
328
329
330% --- Executes on button press in checkbox17.
331function checkbox17_Callback(hObject, eventdata, handles)
332% hObject    handle to checkbox17 (see GCBO)
333% eventdata  reserved - to be defined in a future version of MATLAB
334% handles    structure with handles and user data (see GUIDATA)
335
336% Hint: get(hObject,'Value') returns toggle state of checkbox17
337
338
339% --- Executes on button press in checkbox18.
340function checkbox18_Callback(hObject, eventdata, handles)
341% hObject    handle to checkbox18 (see GCBO)
342% eventdata  reserved - to be defined in a future version of MATLAB
343% handles    structure with handles and user data (see GUIDATA)
344
345% Hint: get(hObject,'Value') returns toggle state of checkbox18
346
347
348% --- Executes on button press in checkbox19.
349function checkbox19_Callback(hObject, eventdata, handles)
350% hObject    handle to checkbox19 (see GCBO)
351% eventdata  reserved - to be defined in a future version of MATLAB
352% handles    structure with handles and user data (see GUIDATA)
353
354% Hint: get(hObject,'Value') returns toggle state of checkbox19
355
356
357% --- Executes on button press in checkbox20.
358function checkbox20_Callback(hObject, eventdata, handles)
359% hObject    handle to checkbox20 (see GCBO)
360% eventdata  reserved - to be defined in a future version of MATLAB
361% handles    structure with handles and user data (see GUIDATA)
362
363% Hint: get(hObject,'Value') returns toggle state of checkbox20
364
365
366% --- Executes on button press in checkbox21.
367function checkbox21_Callback(hObject, eventdata, handles)
368% hObject    handle to checkbox21 (see GCBO)
369% eventdata  reserved - to be defined in a future version of MATLAB
370% handles    structure with handles and user data (see GUIDATA)
371
372% Hint: get(hObject,'Value') returns toggle state of checkbox21
373
374
375% --- Executes on button press in checkbox22.
376function checkbox22_Callback(hObject, eventdata, handles)
377% hObject    handle to checkbox22 (see GCBO)
378% eventdata  reserved - to be defined in a future version of MATLAB
379% handles    structure with handles and user data (see GUIDATA)
380
381% Hint: get(hObject,'Value') returns toggle state of checkbox22
382
383
384% --- Executes on button press in checkbox23.
385function checkbox23_Callback(hObject, eventdata, handles)
386% hObject    handle to checkbox23 (see GCBO)
387% eventdata  reserved - to be defined in a future version of MATLAB
388% handles    structure with handles and user data (see GUIDATA)
389
390% Hint: get(hObject,'Value') returns toggle state of checkbox23
391
392
393% --- Executes on button press in checkbox13.
394function checkbox13_Callback(hObject, eventdata, handles)
395% hObject    handle to checkbox13 (see GCBO)
396% eventdata  reserved - to be defined in a future version of MATLAB
397% handles    structure with handles and user data (see GUIDATA)
398
399% Hint: get(hObject,'Value') returns toggle state of checkbox13
400
401
402% --- Executes on button press in checkbox24.
403function checkbox24_Callback(hObject, eventdata, handles)
404% hObject    handle to checkbox24 (see GCBO)
405% eventdata  reserved - to be defined in a future version of MATLAB
406% handles    structure with handles and user data (see GUIDATA)
407
408% Hint: get(hObject,'Value') returns toggle state of checkbox24
409
410
411% --- Executes on button press in checkbox25.
412function checkbox25_Callback(hObject, eventdata, handles)
413% hObject    handle to checkbox25 (see GCBO)
414% eventdata  reserved - to be defined in a future version of MATLAB
415% handles    structure with handles and user data (see GUIDATA)
416
417% Hint: get(hObject,'Value') returns toggle state of checkbox25
418
419
420% --- Executes on button press in checkbox26.
421function checkbox26_Callback(hObject, eventdata, handles)
422% hObject    handle to checkbox26 (see GCBO)
423% eventdata  reserved - to be defined in a future version of MATLAB
424% handles    structure with handles and user data (see GUIDATA)
425
426% Hint: get(hObject,'Value') returns toggle state of checkbox26
427
428
429% --- Executes on button press in checkbox27.
430function checkbox27_Callback(hObject, eventdata, handles)
431% hObject    handle to checkbox27 (see GCBO)
432% eventdata  reserved - to be defined in a future version of MATLAB
433% handles    structure with handles and user data (see GUIDATA)
434
435% Hint: get(hObject,'Value') returns toggle state of checkbox27
436
437
438% --- Executes on button press in checkbox28.
439function checkbox28_Callback(hObject, eventdata, handles)
440% hObject    handle to checkbox28 (see GCBO)
441% eventdata  reserved - to be defined in a future version of MATLAB
442% handles    structure with handles and user data (see GUIDATA)
443
444% Hint: get(hObject,'Value') returns toggle state of checkbox28
445
446
447% --- Executes on button press in checkbox29.
448function checkbox29_Callback(hObject, eventdata, handles)
449% hObject    handle to checkbox29 (see GCBO)
450% eventdata  reserved - to be defined in a future version of MATLAB
451% handles    structure with handles and user data (see GUIDATA)
452
453% Hint: get(hObject,'Value') returns toggle state of checkbox29
454
455
456% --- Executes on button press in checkbox30.
457function checkbox30_Callback(hObject, eventdata, handles)
458% hObject    handle to checkbox30 (see GCBO)
459% eventdata  reserved - to be defined in a future version of MATLAB
460% handles    structure with handles and user data (see GUIDATA)
461
462% Hint: get(hObject,'Value') returns toggle state of checkbox30
463
464
465% --- Executes on button press in checkbox31.
466function checkbox31_Callback(hObject, eventdata, handles)
467% hObject    handle to checkbox31 (see GCBO)
468% eventdata  reserved - to be defined in a future version of MATLAB
469% handles    structure with handles and user data (see GUIDATA)
470
471% Hint: get(hObject,'Value') returns toggle state of checkbox31
472
473
474% --- Executes on button press in checkbox32.
475function checkbox32_Callback(hObject, eventdata, handles)
476% hObject    handle to checkbox32 (see GCBO)
477% eventdata  reserved - to be defined in a future version of MATLAB
478% handles    structure with handles and user data (see GUIDATA)
479
480% Hint: get(hObject,'Value') returns toggle state of checkbox32
481
482
483% --- Executes on button press in checkbox33.
484function checkbox33_Callback(hObject, eventdata, handles)
485% hObject    handle to checkbox33 (see GCBO)
486% eventdata  reserved - to be defined in a future version of MATLAB
487% handles    structure with handles and user data (see GUIDATA)
488
489% Hint: get(hObject,'Value') returns toggle state of checkbox33
490
491
492% --- Executes on button press in checkbox34.
493function checkbox34_Callback(hObject, eventdata, handles)
494% hObject    handle to checkbox34 (see GCBO)
495% eventdata  reserved - to be defined in a future version of MATLAB
496% handles    structure with handles and user data (see GUIDATA)
497
498% Hint: get(hObject,'Value') returns toggle state of checkbox34
499
500
501% --- Executes on button press in checkbox35.
502function checkbox35_Callback(hObject, eventdata, handles)
503% hObject    handle to checkbox35 (see GCBO)
504% eventdata  reserved - to be defined in a future version of MATLAB
505% handles    structure with handles and user data (see GUIDATA)
506
507% Hint: get(hObject,'Value') returns toggle state of checkbox35
508
509
510% --- Executes on button press in checkbox36.
511function checkbox36_Callback(hObject, eventdata, handles)
512% hObject    handle to checkbox36 (see GCBO)
513% eventdata  reserved - to be defined in a future version of MATLAB
514% handles    structure with handles and user data (see GUIDATA)
515
516% Hint: get(hObject,'Value') returns toggle state of checkbox36
517
518
519% --- Executes on button press in checkbox37.
520function checkbox37_Callback(hObject, eventdata, handles)
521% hObject    handle to checkbox37 (see GCBO)
522% eventdata  reserved - to be defined in a future version of MATLAB
523% handles    structure with handles and user data (see GUIDATA)
524
525% Hint: get(hObject,'Value') returns toggle state of checkbox37
526
527
528% --- Executes on button press in checkbox38.
529function checkbox38_Callback(hObject, eventdata, handles)
530% hObject    handle to checkbox38 (see GCBO)
531% eventdata  reserved - to be defined in a future version of MATLAB
532% handles    structure with handles and user data (see GUIDATA)
533
534% Hint: get(hObject,'Value') returns toggle state of checkbox38
535
536
537% --- Executes on button press in checkbox39.
538function checkbox39_Callback(hObject, eventdata, handles)
539% hObject    handle to checkbox39 (see GCBO)
540% eventdata  reserved - to be defined in a future version of MATLAB
541% handles    structure with handles and user data (see GUIDATA)
542
543% Hint: get(hObject,'Value') returns toggle state of checkbox39
544
545
546% --- Executes on button press in checkbox40.
547function checkbox40_Callback(hObject, eventdata, handles)
548% hObject    handle to checkbox40 (see GCBO)
549% eventdata  reserved - to be defined in a future version of MATLAB
550% handles    structure with handles and user data (see GUIDATA)
551
552% Hint: get(hObject,'Value') returns toggle state of checkbox40
553
554
555% --- Executes on button press in checkbox41.
556function checkbox41_Callback(hObject, eventdata, handles)
557% hObject    handle to checkbox41 (see GCBO)
558% eventdata  reserved - to be defined in a future version of MATLAB
559% handles    structure with handles and user data (see GUIDATA)
560
561% Hint: get(hObject,'Value') returns toggle state of checkbox41
562
563
564% --- Executes on button press in checkbox42.
565function checkbox42_Callback(hObject, eventdata, handles)
566% hObject    handle to checkbox42 (see GCBO)
567% eventdata  reserved - to be defined in a future version of MATLAB
568% handles    structure with handles and user data (see GUIDATA)
569
570% Hint: get(hObject,'Value') returns toggle state of checkbox42
571
572
573% --- Executes on button press in checkbox43.
574function checkbox43_Callback(hObject, eventdata, handles)
575% hObject    handle to checkbox43 (see GCBO)
576% eventdata  reserved - to be defined in a future version of MATLAB
577% handles    structure with handles and user data (see GUIDATA)
578
579% Hint: get(hObject,'Value') returns toggle state of checkbox43
580
581
582% --- Executes on button press in checkbox44.
583function checkbox44_Callback(hObject, eventdata, handles)
584% hObject    handle to checkbox44 (see GCBO)
585% eventdata  reserved - to be defined in a future version of MATLAB
586% handles    structure with handles and user data (see GUIDATA)
587
588% Hint: get(hObject,'Value') returns toggle state of checkbox44
589
590
591% --- Executes on button press in checkbox45.
592function checkbox45_Callback(hObject, eventdata, handles)
593% hObject    handle to checkbox45 (see GCBO)
594% eventdata  reserved - to be defined in a future version of MATLAB
595% handles    structure with handles and user data (see GUIDATA)
596
597% Hint: get(hObject,'Value') returns toggle state of checkbox45
598
599
600% --- Executes on button press in checkbox46.
601function checkbox46_Callback(hObject, eventdata, handles)
602% hObject    handle to checkbox46 (see GCBO)
603% eventdata  reserved - to be defined in a future version of MATLAB
604% handles    structure with handles and user data (see GUIDATA)
605
606% Hint: get(hObject,'Value') returns toggle state of checkbox46
607
608
609% --- Executes on button press in checkbox47.
610function checkbox47_Callback(hObject, eventdata, handles)
611% hObject    handle to checkbox47 (see GCBO)
612% eventdata  reserved - to be defined in a future version of MATLAB
613% handles    structure with handles and user data (see GUIDATA)
614
615% Hint: get(hObject,'Value') returns toggle state of checkbox47
616
617
618% --- Executes on button press in checkbox48.
619function checkbox48_Callback(hObject, eventdata, handles)
620% hObject    handle to checkbox48 (see GCBO)
621% eventdata  reserved - to be defined in a future version of MATLAB
622% handles    structure with handles and user data (see GUIDATA)
623
624% Hint: get(hObject,'Value') returns toggle state of checkbox48
625
626
627% --- Executes on button press in checkbox49.
628function checkbox49_Callback(hObject, eventdata, handles)
629% hObject    handle to checkbox49 (see GCBO)
630% eventdata  reserved - to be defined in a future version of MATLAB
631% handles    structure with handles and user data (see GUIDATA)
632
633% Hint: get(hObject,'Value') returns toggle state of checkbox49
634
635
636% --- Executes on button press in checkbox50.
637function checkbox50_Callback(hObject, eventdata, handles)
638% hObject    handle to checkbox50 (see GCBO)
639% eventdata  reserved - to be defined in a future version of MATLAB
640% handles    structure with handles and user data (see GUIDATA)
641
642% Hint: get(hObject,'Value') returns toggle state of checkbox50
643
644
645% --- Executes on button press in checkbox51.
646function checkbox51_Callback(hObject, eventdata, handles)
647% hObject    handle to checkbox51 (see GCBO)
648% eventdata  reserved - to be defined in a future version of MATLAB
649% handles    structure with handles and user data (see GUIDATA)
650
651% Hint: get(hObject,'Value') returns toggle state of checkbox51
652
653
654% --- Executes on button press in checkbox52.
655function checkbox52_Callback(hObject, eventdata, handles)
656% hObject    handle to checkbox52 (see GCBO)
657% eventdata  reserved - to be defined in a future version of MATLAB
658% handles    structure with handles and user data (see GUIDATA)
659
660% Hint: get(hObject,'Value') returns toggle state of checkbox52
661
662
663% --- Executes on button press in checkbox53.
664function checkbox53_Callback(hObject, eventdata, handles)
665% hObject    handle to checkbox53 (see GCBO)
666% eventdata  reserved - to be defined in a future version of MATLAB
667% handles    structure with handles and user data (see GUIDATA)
668
669% Hint: get(hObject,'Value') returns toggle state of checkbox53
670
671
672% --- Executes on button press in checkbox54.
673function checkbox54_Callback(hObject, eventdata, handles)
674% hObject    handle to checkbox54 (see GCBO)
675% eventdata  reserved - to be defined in a future version of MATLAB
676% handles    structure with handles and user data (see GUIDATA)
677
678% Hint: get(hObject,'Value') returns toggle state of checkbox54
679
680
681% --- Executes on button press in checkbox55.
682function checkbox55_Callback(hObject, eventdata, handles)
683% hObject    handle to checkbox55 (see GCBO)
684% eventdata  reserved - to be defined in a future version of MATLAB
685% handles    structure with handles and user data (see GUIDATA)
686
687% Hint: get(hObject,'Value') returns toggle state of checkbox55
688
689
690% --- Executes on button press in checkbox56.
691function checkbox56_Callback(hObject, eventdata, handles)
692% hObject    handle to checkbox56 (see GCBO)
693% eventdata  reserved - to be defined in a future version of MATLAB
694% handles    structure with handles and user data (see GUIDATA)
695
696% Hint: get(hObject,'Value') returns toggle state of checkbox56
697
698
699
700function edit3_Callback(hObject, eventdata, handles)
701% hObject    handle to edit3 (see GCBO)
702% eventdata  reserved - to be defined in a future version of MATLAB
703% handles    structure with handles and user data (see GUIDATA)
704
705% Hints: get(hObject,'String') returns contents of edit3 as text
706%        str2double(get(hObject,'String')) returns contents of edit3 as a double
707
708
709% --- Executes during object creation, after setting all properties.
710function edit3_CreateFcn(hObject, eventdata, handles)
711% hObject    handle to edit3 (see GCBO)
712% eventdata  reserved - to be defined in a future version of MATLAB
713% handles    empty - handles not created until after all CreateFcns called
714
715% Hint: edit controls usually have a white background on Windows.
716%       See ISPC and COMPUTER.
717if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
718    set(hObject,'BackgroundColor','white');
719end
720
721
722
723function edit4_Callback(hObject, eventdata, handles)
724% hObject    handle to edit4 (see GCBO)
725% eventdata  reserved - to be defined in a future version of MATLAB
726% handles    structure with handles and user data (see GUIDATA)
727
728% Hints: get(hObject,'String') returns contents of edit4 as text
729%        str2double(get(hObject,'String')) returns contents of edit4 as a double
730
731
732% --- Executes during object creation, after setting all properties.
733function edit4_CreateFcn(hObject, eventdata, handles)
734% hObject    handle to edit4 (see GCBO)
735% eventdata  reserved - to be defined in a future version of MATLAB
736% handles    empty - handles not created until after all CreateFcns called
737
738% Hint: edit controls usually have a white background on Windows.
739%       See ISPC and COMPUTER.
740if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
741    set(hObject,'BackgroundColor','white');
742end
743
744
745
746function edit5_Callback(hObject, eventdata, handles)
747% hObject    handle to edit5 (see GCBO)
748% eventdata  reserved - to be defined in a future version of MATLAB
749% handles    structure with handles and user data (see GUIDATA)
750
751% Hints: get(hObject,'String') returns contents of edit5 as text
752%        str2double(get(hObject,'String')) returns contents of edit5 as a double
753
754
755% --- Executes during object creation, after setting all properties.
756function edit5_CreateFcn(hObject, eventdata, handles)
757% hObject    handle to edit5 (see GCBO)
758% eventdata  reserved - to be defined in a future version of MATLAB
759% handles    empty - handles not created until after all CreateFcns called
760
761% Hint: edit controls usually have a white background on Windows.
762%       See ISPC and COMPUTER.
763if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
764    set(hObject,'BackgroundColor','white');
765end
766
767
768% --- Executes on button press in BPM15.
769function BPM15_Callback(hObject, eventdata, handles)
770% hObject    handle to BPM15 (see GCBO)
771% eventdata  reserved - to be defined in a future version of MATLAB
772% handles    structure with handles and user data (see GUIDATA)
773
774% Hint: get(hObject,'Value') returns toggle state of BPM15
775
776
Note: See TracBrowser for help on using the repository browser.