Many
Manuals
search
Categorie
Marchi
Home
MATLAB
Software
MATLAB REPORT GENERATOR - RELEASE NOTES
Guida Utente
MATLAB MATLAB REPORT GENERATOR - RELEASE NOTES Guida Utente Pagina 206
Scaricare
Condividere
Condivisione
Aggiungi ai miei manuali
Stampa
Pagina
/
986
Indice
SEGNALIBRI
Valutato
.
/ 5. Basato su
recensioni clienti
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
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
1
2
...
201
202
203
204
205
206
207
208
209
210
211
...
985
986
Report Generator™
1
User's Guide
1
How to Contact MathWorks
2
Revision History
3
Contents
5
Set Up a Report
6
Create Custom Components
11
Create Custom Stylesheets
11
Comparing XML Files
12
Functions – Alphabetical List
13
Classes – Alphabetical List
13
Create a Report Program
13
Getting Started
19
1 Getting Started
20
Report Creation Workflow
22
Report Creation Workflow
23
Report Components
25
Report Explorer
26
Library pane
27
Supported Report Formats
29
Create Your First Report
31
Create a MATLAB Report
32
Create a Report Setup File
33
2 Create Your First Report
34
Specify Report Variables
37
Create a Title Page
39
Create the Magic Square
59
Generate a Report
69
Generate a Report
71
Report Setups
74
Create a Report Setup
75
Create a New Setup File
76
Create a New Setup File
77
Open a Report Setup
78
Open a Report Setup
79
Close a Report Setup
80
Save a Report Setup
81
3 Set Up a Report
82
Insert Components
83
Set Component Properties
84
Move Components
85
Delete Components
87
Deactivate Components
88
Report Output Format
95
4 Generate a Report
100
Report Generation Preferences
103
Image Formats
105
Report Viewing
105
Change Report Locale
107
Create a Report Log File
111
Memory Usage
115
Add Content with Components
117
Components
118
Component Formatting
119
Report Structure Components
120
Table Formatting Components
121
Property Table Components
122
Property Table Components
123
5 Add Content with Components
124
Select Object Types
125
Summary Table Components
133
Add and Remove Properties
135
Edit Figure Loop Components
138
Figure Properties
139
Report Conversion Templates
144
Related Examples
145
More About
145
Conversion Template Contents
147
Conversion Template Contents
149
Part Templates
151
Copy a Conversion Template
154
Open a Conversion Template
156
Move a Conversion Template
158
Delete a Conversion Template
159
Custom Word Part Templates
163
Delete a Hole
168
Add an Inline Hole
170
Add a Block Hole
171
Create a Custom Template
172
Create a Custom HTML Template
178
Select an HTML Editor
179
About Custom Components
182
7 Create Custom Components
184
Create Custom Components
185
Define Components
186
Set Component Display Options
187
Specify Component Properties
189
Modify Existing Components
191
Build Components
191
About Component Customization
193
Customized Components
199
Customized Components
205
Stylesheets
208
Stylesheets
209
Create a New Stylesheet
210
Edit a Stylesheet
211
8 Create Custom Stylesheets
212
Save a Stylesheet
213
Edit Stylesheet Data Items
215
Edit Stylesheet Data Items
217
Data Items
219
Insert Graphics Files
233
Customized Stylesheets
235
Customized Stylesheets
237
Locate Non-English Fonts
249
Compare XML Files
254
Compare XML Files
255
How to Compare XML Files
256
Change Comparison Type
257
XML Comparison Examples
257
See Also
257
9 Comparing XML Files
258
Array-Based Table
270
Header/Footer Options
271
Insert Anything into Report?
272
Axes Loop
273
Axes Snapshot
275
Print Options
276
Display Options
277
Chapter/Subsection
279
Description
281
Properties
281
Empty Component
283
Evaluate MATLAB Expression
284
Figure Loop
286
Figure Snapshot
288
For Loop
292
Graphics Object Loop
294
Handle Graphics Name
298
Handle Graphics Parameter
300
Select Graphics Object
302
Table Cells
303
Title Properties
303
Handle Graphics Summary Table
305
Object Rows
306
Figure Selection
306
Import File
312
Insert Variable
315
Examples
319
Generate the report
321
Explained.”
322
Link to a Model
323
List Content
325
List Formatting
325
Logical Else
329
Logical Elseif
331
Logical If
332
Logical Then
334
MATLAB Property Table
336
Cell Properties
337
MATLAB/Toolbox Version Number
339
Table Columns
340
Nest Setup File
341
Paragraph
343
Paragraph Text
344
Style Name
344
Stop Report Generation
347
Table Body
353
Table Column Specification
355
Table Entry
357
Table Footer
360
Table Header
362
Table Row
364
Time/Date Stamp
369
Title Page
372
Image Tab
373
Abstract Tab
374
Legal Notice Tab
375
Variable Table
377
While Loop
379
Input Arguments
383
Output Arguments
384
Construction
496
mlreportgen.dom.Border class
515
mlreportgen.dom.HTML class
653
External Web Sites
657
mlreportgen.dom.Table class
767
mlreportgen.dom.Text class
823
13 Create a Report Program
854
Document Object Model
856
Document Object Model
857
Construct a DOM Object
858
Import the DOM API Package
859
Add Content to a Report
863
Clone a DOM Object
865
Add Content as a Group
866
Stream a Report
868
Report Packages
869
Close a Report
870
Display a Report
871
Report Formatting Approaches
872
Use Style Sheets
873
Use Format Objects
875
Use Format Properties
876
Format Inheritance
877
Create Object Containers
878
Form-Based Reporting
880
Navigate Holes in the Form
881
Use Subforms in a Report
883
Simplify Filling in Forms
891
Create and Format Text
893
Create and Format Paragraphs
898
Format a Paragraph
899
Create and Format Lists
904
Create an Ordered List
905
Create a Multilevel List
907
Create and Format Tables
910
Format a Table
913
Create and Format Table Rows
919
Create Links
925
Create and Format Images
928
Create and Format Images
929
Create a Table of Contents
930
Create a Table of Contents
931
Create Image Maps
937
Appending HTML to DOM Reports
943
Use an addHTML Method
945
Use an addHTMLFile Method
947
Append an HTMLFile Object
947
Use an HTML Cleanup Program
949
XML-Parsable HTML Code
953
Compile a Report Program
962
Create a Block-Level Hole
965
Create an HTML Template
974
Create an HTML Template
975
Add Holes in an HTML Template
976
Create a Block Hole
977
Commenti su questo manuale
Nessun commento
Publish
Prodotti e manuali riguardandi Software MATLAB MATLAB REPORT GENERATOR - RELEASE NOTES
Software MATLAB PARALLEL COMPUTING TOOLBOX - S Guida Utente
(656 pagine)
Software MATLAB EMBEDDED IDE LINK 4 - FOR USE WITH TEXAS INSTRUMENTS CODE COMPOSER STUDIO Guida Utente
(112 pagine)
Software MATLAB DO QUALIFICATION RELEASE NOTES Manuale Utente
(15 pagine)
Software MATLAB FINANCIAL DERIVATIVES TOOLBOX Manuale Utente
(119 pagine)
Software MATLAB SIMEVENTS RELEASE NOTES Guida Utente
(114 pagine)
Software MATLAB SIGNAL PROCESSING TOOLBOX 6 Manuale Utente
(60 pagine)
Software MATLAB SIMULINK VERIFICATION AND VALIDATION - S Guida Utente
(674 pagine)
Software MATLAB IMAGE PROCESSING TOOLBOX - RELEASE NOTES Guida Utente
(122 pagine)
Software MATLAB SYSTEM IDENTIFICATION TOOLBOX 7 Guida Utente
(531 pagine)
Software MATLAB DESIGN HDL CODER RELEASE NOTES Guida Utente
(410 pagine)
Software MATLAB POLYSPACE 7 Guida di Installazione
(618 pagine)
Software MATLAB PARALLEL COMPUTING TOOLBOX 4 Guida Utente
(128 pagine)
Software MATLAB DATABASE TOOLBOX RELEASE NOTES Guida Utente
(684 pagine)
Software MATLAB REAL-TIME WORKSHOP 7 - TARGET LANGUAGE COMPILER Manuale Utente
(408 pagine)
Software MATLAB XPC TARGET 4 - DEVICE DRIVERS Guida Utente
(111 pagine)
Software MATLAB GAUGES BLOCKSET RELEASE NOTES Guida Utente
(114 pagine)
Software MATLAB EMBEDDED IDE LINK 4 - FOR USE WITH TEXAS INSTRUMENTS CODE COMPOSER STUDIO Specifiche
(126 pagine)
Software MATLAB SIMULINK 7 - GRAPHICAL USER INTERFACE Specifiche
(216 pagine)
Software MATLAB REAL-TIME WORKSHOP 7 - TARGET LANGUAGE COMPILER Guida Utente
(386 pagine)
Software MATLAB BUILDER EX 1 Guida Utente
(164 pagine)
Stampa documento
Stampa pagina 206
Commenti su questo manuale