Many
Manuals
search
Categorias
Marcas
Principal
MATLAB
Software
SIMULINK 7 - GRAPHICAL USER INTERFACE
Manual do Utilizador
MATLAB SIMULINK 7 - GRAPHICAL USER INTERFACE Manual do Utilizador Página 410
Descarregar
Partilhar
Partilha
Adicionar aos meus manuais
Imprimir
Página
/
500
Índice
MARCADORES
Avaliado
.
/ 5. Com base em
avaliações de clientes
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
10
Lay Out a Programmatic UI
10-78
If you set the context menu Visible property to
off
, or if the user clicks outside the
context menu, the context menu disappears.
1
2
...
405
406
407
408
409
410
411
412
413
414
415
...
499
500
How to Contact MathWorks
2
Revision History
3
Contents
5
Create UIs with GUIDE
6
What Is GUIDE?
6
GUIDE Preferences and Options
6
Lay Out a UI Using GUIDE
7
Create UIs Programmatically
11
Lay Out a Programmatic UI
11
Code a Programmatic UI
12
Manage Callback Execution
13
Packaging GUIs as Apps
15
Introduction to Creating UIs
17
About UIs in MATLAB Software
19
What Is a UI?
20
What Is a UI?
21
How Does a UI Work?
22
Ways to Build MATLAB UIs
23
How to Create a UI with GUIDE
25
Set the Window Size in GUIDE
29
Layout the Simple GUIDE UI
30
Click OK
33
simple_gui
40
% Set the current data value
42
mesh(handles.current_data);
46
Files Generated by GUIDE
48
Files Generated by GUIDE
49
Callbacks” on page 8-5
51
A Simple Programmatic UI
53
3 A Simple Programmatic UI
54
GUIDE: Getting Started
70
GUIDE Tools Summary
71
4 What Is GUIDE?
72
GUIDE Preferences
74
Prompt to Save on Activate
75
All Other Preferences
76
GUIDE Preferences
77
GUIDE Options
80
Resize Behavior
81
Command-Line Accessibility
81
GUIDE Options
83
Generate FIG-File Only
84
1.4142
85
GUIDE Templates
88
Template Descriptions
89
GUIDE Templates
91
GUIDE Components
99
6 Lay Out a UI Using GUIDE
100
GUIDE Components
101
Place Components
103
User Interface Controls
109
Use the Table Property Editor
143
Set Data Properties
149
ActiveX Component
151
Resize GUIDE UI Components
153
Locate and Move Components
160
Drag Components
161
Locate and Move Components
163
Align GUIDE UI Components
165
Align GUIDE UI Components
167
Grid and Rulers
171
Create Menus for GUIDE UIs
177
Create Menus for GUIDE UIs
179
Context Menus
187
Create Toolbars for GUIDE UIs
194
Predefined Tools
199
Custom Tools
199
Standard Background Color
207
UI Design References
209
Save and Run a GUIDE UI
211
Save a GUIDE UI
212
Save a GUIDE UI
213
7 Save and Run a GUIDE UI
214
Rename GUIDE UIs and Files
215
Programming a GUIDE UI
217
8 Programming a GUIDE UI
218
GUIDE Callback Syntax
221
Opening Function
223
Output Function
225
How to Use the Example Code
227
Radio Button
229
Button Group
237
Examples of GUIDE UIs
245
Modal Dialog Box in GUIDE
248
Modal Dialog Box in GUIDE
249
9 Examples of GUIDE UIs
250
UI That Uses Persistent Data
253
MAT-file Validation
255
Overall UI Characteristics
263
Plot Push Button Behavior
273
Create Two Context Menus
289
Related Examples
291
Implement the List Box
293
Read Workspace Variables
299
About the Example
303
Run the Program
305
Design the 3-D Globe UI
315
Inserted
323
The Timer Implementation
327
10 Lay Out a Programmatic UI
334
Programmatic Components
338
Programmatic Components
339
Lay Out a UI Programmatically
363
Align Components
383
Align Components Horizontally
385
Use the uitoolbar Function
411
Commonly Used Properties
411
Default System Font
417
Initialize a Programmatic UI
420
11 Code a Programmatic UI
422
Callback Syntax
427
Share Data Among Callbacks
430
More About
438
Interrupt Callback Execution
440
Interrupt Callback Execution
441
13 Manage Callback Execution
442
Examples of UIs Created
445
Programmatically
445
View the Example Code
447
Initialize the UI
451
Define the Callbacks
452
Updating the Plot
455
See Also
455
Use the UI
466
Program List Master
470
Identify Component Handles
473
Code File Organization
479
UI Programming Techniques
480
• “Find Apps” on page 15-2
483
Find Apps
484
View App File List
485
Install or Reinstall App
487
Uninstall App
488
Apps Overview
492
Why Create an App?
493
16 Packaging GUIs as Apps
494
Package Apps
495
Modify Apps
497
Share Apps
498
Dependency Analysis
500
Comentários a estes Manuais
Sem comentários
Publish
Manuais e produtos relacionados com Software MATLAB SIMULINK 7 - GRAPHICAL USER INTERFACE
Software MATLAB MAPPING TOOLBOX RELEASE NOTES Guia do Utilizador
(160 páginas)
Software MATLAB IMAGE ACQUISITION TOOLBOX - RELEASE NOTES Guia do Utilizador
(172 páginas)
Software MATLAB SIMULINK 3D ANIMATION - S Guia do Utilizador
(490 páginas)
Software MATLAB MATLAB REPORT GENERATOR - RELEASE NOTES Guia do Utilizador
(986 páginas)
Software MATLAB PARALLEL COMPUTING TOOLBOX - S Guia do Utilizador
(656 páginas)
Software MATLAB EMBEDDED IDE LINK 4 - FOR USE WITH TEXAS INSTRUMENTS CODE COMPOSER STUDIO Guia do Utilizador
(112 páginas)
Software MATLAB DO QUALIFICATION RELEASE NOTES Manual do Utilizador
(15 páginas)
Software MATLAB FINANCIAL DERIVATIVES TOOLBOX Manual do Utilizador
(119 páginas)
Software MATLAB SIMEVENTS RELEASE NOTES Guia do Utilizador
(114 páginas)
Software MATLAB SIGNAL PROCESSING TOOLBOX 6 Manual do Utilizador
(60 páginas)
Software MATLAB SIMULINK VERIFICATION AND VALIDATION - S Guia do Utilizador
(674 páginas)
Software MATLAB IMAGE PROCESSING TOOLBOX - RELEASE NOTES Guia do Utilizador
(122 páginas)
Software MATLAB SYSTEM IDENTIFICATION TOOLBOX 7 Guia do Utilizador
(531 páginas)
Software MATLAB DESIGN HDL CODER RELEASE NOTES Guia do Utilizador
(410 páginas)
Software MATLAB POLYSPACE 7 Guia de Instalação
(618 páginas)
Software MATLAB PARALLEL COMPUTING TOOLBOX 4 Guia do Utilizador
(128 páginas)
Software MATLAB DATABASE TOOLBOX RELEASE NOTES Guia do Utilizador
(684 páginas)
Software MATLAB REAL-TIME WORKSHOP 7 - TARGET LANGUAGE COMPILER Manual do Utilizador
(408 páginas)
Software MATLAB XPC TARGET 4 - DEVICE DRIVERS Guia do Utilizador
(111 páginas)
Software MATLAB GAUGES BLOCKSET RELEASE NOTES Guia do Utilizador
(114 páginas)
Imprimir documento
Imprimir página 410
Comentários a estes Manuais