-
Notifications
You must be signed in to change notification settings - Fork 5
/
基本操作.nb
1612 lines (1515 loc) · 73.6 KB
/
基本操作.nb
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
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(* Content-type: application/vnd.wolfram.mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 13.0' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 158, 7]
NotebookDataLength[ 75173, 1604]
NotebookOptionsPosition[ 68502, 1471]
NotebookOutlinePosition[ 69843, 1508]
CellTagsIndexPosition[ 69711, 1502]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[CellGroupData[{
Cell["Mathematica \:57fa\:672c\:64cd\:4f5c", "Title",
CellChangeTimes->{{3.885214629586403*^9, 3.8852146550705824`*^9}, {
3.889325431468091*^9,
3.8893254364258265`*^9}},ExpressionUUID->"a4ac172c-c288-4f13-b9b7-\
627089dea427"],
Cell[CellGroupData[{
Cell["1. \:7b14\:8bb0\:672c\:76f8\:5173\:8bbe\:7f6e", "Section",
CellChangeTimes->{{3.885214972104664*^9, 3.885214991068591*^9}, {
3.889325462813257*^9,
3.8893254633044815`*^9}},ExpressionUUID->"ac420631-5a93-4fa6-a219-\
15156f622737"],
Cell[BoxData[
RowBox[{
RowBox[{"(*", "\:7b14\:8bb0\:672c\:7684\:80cc\:666f\:8bbe\:7f6e", "*)"}],
"\n",
RowBox[{"SetOptions", "[",
RowBox[{
RowBox[{"EvaluationNotebook", "[", "]"}], ",", " ",
RowBox[{"Background", "->",
RowBox[{"RGBColor", "[",
RowBox[{"1", ",", "1", ",", "1"}], "]"}]}]}], "]"}]}]], "Code",
CellChangeTimes->{{3.8852148525147476`*^9, 3.8852149640164776`*^9}, {
3.885215031720436*^9, 3.885215042273393*^9}, {3.885215615429084*^9,
3.885215645980431*^9}},
CellLabel->"In[22]:=",ExpressionUUID->"97e5c0f4-c88a-40d3-8dfb-eed4f7718f69"],
Cell[BoxData[
RowBox[{
RowBox[{"(*", "\:8bbe\:7f6e\:7b14\:8bb0\:672c\:900f\:660e\:5ea6", "*)"}],
"\n",
RowBox[{"SetOptions", "[",
RowBox[{
RowBox[{"EvaluationNotebook", "[", "]"}], ",", " ",
RowBox[{"WindowOpacity", " ", "->", " ", "1"}]}], "]"}]}]], "Code",
CellChangeTimes->{{3.8872431496140223`*^9, 3.887243209321949*^9}},
CellLabel->"In[23]:=",ExpressionUUID->"491dc19b-04e0-4059-8966-717f9103904d"]
}, Open ]],
Cell[CellGroupData[{
Cell["2. \:53d7\:4fe1\:4efb\:6587\:4ef6\:5939", "Section",
CellChangeTimes->{{3.8893250432908716`*^9, 3.8893250455370197`*^9}, {
3.8893254669128456`*^9,
3.8893254705360813`*^9}},ExpressionUUID->"35629620-5937-4889-849f-\
061cb02fae53"],
Cell["\:53ef\:4ee5\:8f83\:4e3a\:65b9\:4fbf\:7684\:5728\:4e00\:6253\:5f00\:5c31\
\:52a0\:8f7d\:52a8\:6001\:5185\:5bb9\:ff0c\:4f7f\:7528\:4e0b\:9762\:7684\:547d\
\:4ee4\:53ef\:4ee5\:67e5\:770b\:53d7\:4fe1\:4efb\:7684\:6587\:4ef6\:5939\:4f4d\
\:7f6e\:3002", "Text",
CellChangeTimes->{
3.889325076508472*^9},ExpressionUUID->"33b559c7-e247-4612-b674-\
b3731b284626"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"Dynamic", "[",
RowBox[{"Column", "[",
RowBox[{"ExpandFileName", "/@",
RowBox[{"CurrentValue", "[",
RowBox[{"$FrontEnd", ",",
RowBox[{"{",
RowBox[{
"\"\<NotebookSecurityOptions\>\"", ",", "\"\<TrustedPath\>\""}],
"}"}]}], "]"}]}], "]"}], "]"}]], "Code",
CellChangeTimes->{3.889325055470792*^9},
CellLabel->"In[24]:=",ExpressionUUID->"3528cf85-6ff1-42e7-ab9f-c9afdd593f9b"],
Cell[BoxData[
DynamicBox[ToBoxes[
Column[
Map[ExpandFileName,
CurrentValue[$FrontEnd, {"NotebookSecurityOptions", "TrustedPath"}]]],
StandardForm],
ImageSizeCache->{331., {31.42743637626525, 37.73256362373475}}]], "Output",
CellChangeTimes->{{3.8893250591119366`*^9, 3.8893250592513027`*^9},
3.8894037384225473`*^9, 3.8905955565264206`*^9},
CellLabel->"Out[24]=",ExpressionUUID->"b04a20ee-fa16-40c7-a3fb-b2bd6a083575"]
}, Open ]]
}, Open ]],
Cell[CellGroupData[{
Cell["3. \:5e38\:7528\:57fa\:672c\:64cd\:4f5c", "Section",
CellChangeTimes->{{3.889325279699435*^9, 3.889325284674671*^9}, {
3.8893254731048913`*^9,
3.88932547356746*^9}},ExpressionUUID->"7b9dbdd5-45a4-4b02-afb2-\
c79b9b4becff"],
Cell[TextData[StyleBox["1. \:5185\:7f6e\:7684\:51fd\:6570\:5fc5\:987b\:9996\
\:5b57\:6bcd\:5927\:5199\n2. [] \:5185\:90e8\:662f\:8ba1\:7b97\:7684\:5185\
\:5bb9\n3. {} \:5185\:90e8\:662f\:5217\:8868\:6216\:8005\:662f\:8303\:56f4\n\
4. Shift + Enter \:6267\:884c\:8ba1\:7b97\:ff1b Alt + .\:7ec8\:6b62\:8ba1\
\:7b97\n5. \:9ed8\:8ba4\:6ca1\:6709\:8d4b\:503c\:7684\:53d8\:91cf\:4e3a\:84dd\
\:8272\:ff0c\:8d4b\:503c\:540e\:4e3a\:9ed1\:8272\n6. \:7b49\:53f7\:662f ==\
\:ff0c\:4e0d\:662f = (\:8d4b\:503c\:7b26\:53f7)\n7. \:8bbe\:7f6e\:5de5\:4f5c\
\:76ee\:5f55 : SetDirectory[NotebookDirectory[]]\n8. \:4e24\:4e2a\:6570\:6216\
\:8868\:8fbe\:5f0f\:4e4b\:95f4\:7528\:7a7a\:683c\:8868\:793a\:76f8\:4e58\n9. \
\:81ea\:7531\:683c\:5f0f\:8f93\:5165\:ff1a\:5148\:8f93\:5165\:7b49\:53f7\:ff0c\
\:7528\:82f1\:6587\:8868\:8fbe\:81ea\:5df1\:7684\:610f\:601d\:ff0c\:540e\:8fb9\
\:53ef\:4ee5\:4e0d\:6309\:7167Mathematica\:7684\:8bed\:6cd5\n10. \:5584\:4e8e\
\:4f7f\:7528Esc,\:8f93\:51652D\:6570\:5b66\:6a21\:5f0f.\:6bd4\:5982\:4f7f\
\:7528:Esc pi Esc\:6765\:8f93\:5165\\[pi]\:6216\:8005\:662f\:4f7f\:7528\\[Pi \
]\:8868\:793a \[Pi]\n11. \:4f7f\:7528Ctrl + 4 \:8f93\:5165 LaTeX\:8bed\:6cd5\n\
12. \:4f7f\:7528%\:5f15\:7528\:4e0a\:4e00\:6b21\:7ed3\:679c,%n\:5f15\:7528\
\:7b2cn\:6b21\:7ed3\:679c\n13.\:4f7f\:7528Alt+\:6570\:5b571-7\:5b9e\:73b0\
\:4e0d\:540c\:7684\:6587\:6863\:7ed3\:6784\n14. \:4f7f\:7528Enter\:6362\:884c\
\:ff0c\[DownArrow] \:5b9e\:73b0\:5f00\:542f\:65b0\:5355\:5143\:ff08\:4e00\
\:4e2a\:5355\:5143\:7684\:672b\:5c3e\:65f6\:ff09\n15. \
\:4f7f\:7528\:5206\:53f7 ; \:6291\:5236\:8f93\:51fa\n16. \:4f7f\:7528Alt + /\
\:5feb\:901f\:5b9e\:73b0\:6ce8\:91ca\n17. Import[]\:ff1a\:5bfc\:5165\:5185\
\:5bb9\n18. \
\:5bfc\:51fapdf\:65f6\:4f7f\:7528\:6587\:4ef6-->\:53e6\:5b58\:4e3apdf",
FontFamily->"MesloLGL Nerd Font Mono"]], "Text",
CellChangeTimes->{{3.889325203491624*^9, 3.889325215898949*^9}, {
3.8893565590854053`*^9,
3.8893565643188834`*^9}},ExpressionUUID->"5dded3c7-c520-49ff-83ef-\
1949d47406ce"],
Cell[CellGroupData[{
Cell["3.2 \:540e\:7f00\:8868\:8fbe\:5f0f\:4f20\:53c2", "Subsection",
CellChangeTimes->{{3.8905955379959826`*^9,
3.890595550318022*^9}},ExpressionUUID->"060518c1-d8f8-459c-b0ee-\
5d325f3632d1"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{
RowBox[{"2", " ", "//", " ", "3"}], " ", "//", " ",
RowBox[{
RowBox[{"Power", " ", "@", " ", "##"}], " ", "&"}]}]], "Code",
CellChangeTimes->{{3.8905955528958106`*^9, 3.8905955541137686`*^9}, {
3.8905956026767836`*^9, 3.890595603724346*^9}},
CellLabel->"In[31]:=",ExpressionUUID->"da807ae4-b457-473b-b5ca-adee40a3373f"],
Cell[BoxData[
RowBox[{"3", "[", "2", "]"}]], "Output",
CellChangeTimes->{{3.8905955565464177`*^9, 3.890595556785452*^9},
3.8905956045177217`*^9},
CellLabel->"Out[31]=",ExpressionUUID->"7ed0d049-f64e-4b0a-9210-92292b293ba5"]
}, Open ]]
}, Open ]]
}, Open ]],
Cell[CellGroupData[{
Cell["4. \:51fd\:6570\:4f7f\:7528\:4e8b\:9879", "Section",
CellChangeTimes->{{3.8893253099244823`*^9, 3.8893253259059167`*^9}, {
3.8893254763968706`*^9,
3.889325476882593*^9}},ExpressionUUID->"4115586b-1286-488a-b4cc-\
229c2388d28d"],
Cell["\<\
1. N[]\:ff1a\:8ba1\:7b97\:8fd1\:4f3c\:7ed3\:679c\:ff0c\:53ef\:4ee5\:6307\:5b9a\
\:7cbe\:5ea6:\:5982E\:7684\:5c0f\:6570\:70b9\:540e\:ff0c100\:4f4dN[E, 100]
3. Expand[]:\:591a\:9879\:5f0f\:5c55\:5f00
4. Solve[]:\:7b80\:5355\:65b9\:7a0b\:7684\:6c42\:89e3
5. Clear[]:\:6e05\:9664\:53d8\:91cf
6. \:51fd\:6570\:7684\:8c03\:7528:
\t6.1 \:524d\:7f00\:ff1aPlus[1+1]
\t6.2 \:4e2d\:7f00\:ff1a1~Plus~2
\t6.3 \:540e\:7f00\:ff1a1+1//Plus
7. \:67e5\:770b\:5e2e\:52a9\:ff1a\:4f7f\:7528?Simplify->\:67e5\:770b\:51fd\
\:6570\:7684\:5e2e\:52a9\:4fe1\:606f
8. \:547d\:540d\:89c4\:8303\:ff1a\:7cfb\:7edf\:7684\:5185\:5efa\:51fd\:6570\
\:4e3aCamel\:547d\:540d\:6cd5:\:5982True\:ff0cFalse, \
FactorInteger[],SetAttributes[]\:ff1b
\t \:6240\:4ee5\:4e3a\:4e86\:9632\:6b62\:547d\:540d\:51b2\:7a81\:6211\:4eec\
\:4f7f\:7528camel\:547d\:540d\:6cd5\:ff1a\:5982\:81ea\:5b9a\:4e49isPrime[],\
hasNum[];
9. \:5224\:65ad\:51fd\:6570\:ff1a\:7528\:6765\:505a\:5224\:65ad\:7684\:51fd\
\:6570\:4e00\:822c\:4ee5Q\:7ed3\:5c3e:\:5982EvenQ[](\:5076\:6570\:5224\:5b9a),\
PrimeQ[],MatchQ[]\
\>", "Text",
CellChangeTimes->{
3.889325315725312*^9},ExpressionUUID->"9e930475-a564-418b-b632-\
36c789ae5429"]
}, Open ]],
Cell[CellGroupData[{
Cell["5. \:5e2e\:52a9\:6587\:6863", "Section",
CellChangeTimes->{{3.885218822555626*^9, 3.8852188263051195`*^9}, {
3.8893254793589277`*^9,
3.889325479852667*^9}},ExpressionUUID->"3fde48c3-076e-4ce2-bc62-\
6d93cece3c7c"],
Cell["\<\
\:4e3b\:8981\:662f\:672c\:5730\:7684\:6c49\:5316\:6587\:6863\:7684\:67e5\:770b\
\:65b9\:6cd5\:ff0c\:5f53\:7136\:5b98\:7f51\:7684\:80af\:5b9a\:65f6\:6700\:597d\
\:7684
1. \:5e2e\:52a9 -> Wolfram \:53c2\:8003\:8d44\:6599
2. \:5e2e\:52a9 -> \:6b22\:8fce\:5c4f\:5e55 -> \:6587\:6863
3. \:ff1f\:51fd\:6570,\:67e5\:770b\:51fd\:6570\:5e2e\:52a9
4. \:67e5\:770b\:51fd\:6570\:7684\:53c2\:6570\:ff1a\:4f7f\:7528Option\:51fd\
\:6570\
\>", "Text",
CellChangeTimes->{{3.885218832649909*^9, 3.885218923583644*^9}, {
3.889325290419012*^9, 3.889325292561261*^9}, {3.8894037238501225`*^9,
3.889403728016702*^9}, {3.8894038104443398`*^9,
3.8894038190498805`*^9}},ExpressionUUID->"4a164eba-cd7b-49fa-847c-\
82bb57bf7456"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"?", "Plot"}]], "Code",
CellChangeTimes->{{3.889403732411648*^9, 3.889403735416424*^9}},
CellLabel->"In[26]:=",ExpressionUUID->"01a71ce9-1e84-47d3-848d-cf2bdf0bb76d"],
Cell[BoxData[
InterpretationBox[
StyleBox[
FrameBox[
DynamicModuleBox[{System`InformationDump`open$$ = False,
System`InformationDump`mouseOver$$ = False},
PaneSelectorBox[{True->
TagBox[GridBox[{
{
ItemBox[
PaneBox[
StyleBox["\<\" Symbol\"\>", "InformationTitleText",
StripOnInput->False,
BaseStyle -> None],
FrameMargins->{{4, 0}, {-1, 1}}],
BaseStyle->"InformationTitleBackground",
StripOnInput->False],
ItemBox[
PaneBox[
TooltipBox[
ButtonBox[
PaneSelectorBox[{False->
DynamicBox[FEPrivate`FrontEndResource[
"FEBitmaps", "InformationHelpIcon"]], True->
DynamicBox[FEPrivate`FrontEndResource[
"FEBitmaps", "InformationHelpIconHot"]]}, Dynamic[
CurrentValue["MouseOver"]]],
Appearance->None,
BaseStyle->"Link",
ButtonData->"paclet:ref/Plot",
ButtonNote->"paclet:ref/Plot"],
"\"paclet:ref/Plot\""],
FrameMargins->{{0, 4}, {0, 2}}],
BaseStyle->"InformationTitleBackground",
StripOnInput->False]},
{
ItemBox[
PaneBox[
StyleBox["\<\"\\!\\(\\*RowBox[{\\\"Plot\\\", \\\"[\\\", \
RowBox[{StyleBox[\\\"f\\\", \\\"TI\\\"], \\\",\\\", RowBox[{\\\"{\\\", \
RowBox[{StyleBox[\\\"x\\\", \\\"TI\\\"], \\\",\\\", \
SubscriptBox[StyleBox[\\\"x\\\", \\\"TI\\\"], StyleBox[\\\"min\\\", \
\\\"TI\\\"]], \\\",\\\", SubscriptBox[StyleBox[\\\"x\\\", \\\"TI\\\"], \
StyleBox[\\\"max\\\", \\\"TI\\\"]]}], \\\"}\\\"}]}], \\\"]\\\"}]\\) \:7ed8\
\:5236\:51fd\:6570 \\!\\(\\*StyleBox[\\\"f\\\", \\\"TI\\\"]\\) \:7684\:56fe\
\:7ebf\:ff0c\:5176\:81ea\:53d8\:91cf \\!\\(\\*StyleBox[\\\"x\\\", \\\"TI\\\"]\
\\) \:7684\:8303\:56f4\:4e3a\:4ece \\!\\(\\*SubscriptBox[StyleBox[\\\"x\\\", \
\\\"TI\\\"], StyleBox[\\\"min\\\", \\\"TI\\\"]]\\) \:5230 \
\\!\\(\\*SubscriptBox[StyleBox[\\\"x\\\", \\\"TI\\\"], StyleBox[\\\"max\\\", \
\\\"TI\\\"]]\\). \\n\\!\\(\\*RowBox[{\\\"Plot\\\", \\\"[\\\", \
RowBox[{RowBox[{\\\"{\\\", RowBox[{SubscriptBox[StyleBox[\\\"f\\\", \
\\\"TI\\\"], StyleBox[\\\"1\\\", \\\"TR\\\"]], \\\",\\\", \
SubscriptBox[StyleBox[\\\"f\\\", \\\"TI\\\"], StyleBox[\\\"2\\\", \
\\\"TR\\\"]], \\\",\\\", StyleBox[\\\"\[Ellipsis]\\\", \\\"TR\\\"]}], \\\"}\\\
\"}], \\\",\\\", RowBox[{\\\"{\\\", RowBox[{StyleBox[\\\"x\\\", \\\"TI\\\"], \
\\\",\\\", SubscriptBox[StyleBox[\\\"x\\\", \\\"TI\\\"], \
StyleBox[\\\"min\\\", \\\"TI\\\"]], \\\",\\\", \
SubscriptBox[StyleBox[\\\"x\\\", \\\"TI\\\"], StyleBox[\\\"max\\\", \
\\\"TI\\\"]]}], \\\"}\\\"}]}], \\\"]\\\"}]\\) \:7ed8\:5236\:591a\:4e2a\:51fd\
\:6570 \\!\\(\\*SubscriptBox[StyleBox[\\\"f\\\", \\\"TI\\\"], \
StyleBox[\\\"i\\\", \\\"TI\\\"]]\\). \\n\\!\\(\\*RowBox[{\\\"Plot\\\", \
\\\"[\\\", RowBox[{RowBox[{\\\"{\\\", RowBox[{StyleBox[\\\"\[Ellipsis]\\\", \
\\\"TR\\\"], \\\",\\\", RowBox[{StyleBox[\\\"w\\\", \\\"TI\\\"], \\\"[\\\", \
SubscriptBox[StyleBox[\\\"f\\\", \\\"TI\\\"], StyleBox[\\\"i\\\", \
\\\"TI\\\"]], \\\"]\\\"}], \\\",\\\", StyleBox[\\\"\[Ellipsis]\\\", \
\\\"TR\\\"]}], \\\"}\\\"}], \\\",\\\", StyleBox[\\\"\[Ellipsis]\\\", \\\"TR\\\
\"]}], \\\"]\\\"}]\\) \:7ed8\:5236 \\!\\(\\*SubscriptBox[StyleBox[\\\"f\\\", \
\\\"TI\\\"], StyleBox[\\\"i\\\", \\\"TI\\\"]]\\) \:ff0c\:5176\:7279\:5f81\
\:7531\:7b26\:53f7\:5c01\:88c5 \\!\\(\\*StyleBox[\\\"w\\\", \\\"TI\\\"]\\) \
\:6240\:5b9a\:4e49.\\n\\!\\(\\*RowBox[{\\\"Plot\\\", \\\"[\\\", \
RowBox[{StyleBox[\\\"\[Ellipsis]\\\", \\\"TR\\\"], \\\",\\\", \
RowBox[{RowBox[{\\\"{\\\", StyleBox[\\\"x\\\", \\\"TI\\\"], \\\"}\\\"}], \\\"\
\[Element]\\\", StyleBox[\\\"reg\\\", \\\"TI\\\"]}]}], \\\"]\\\"}]\\) \:53d8\
\:91cf \\!\\(\\*StyleBox[\\\"x\\\", \\\"TI\\\"]\\) \:4ece\:51e0\:4f55\:533a\
\:57df \\!\\(\\*StyleBox[\\\"reg\\\", \\\"TI\\\"]\\) \:53d6\:503c.\"\>",
"InformationUsageText",
StripOnInput->False,
LineSpacing->{1.5, 1.5, 3.}],
FrameMargins->{{10, 10}, {8, 10}}],
BaseStyle->"InformationUsageSubtitleBackground",
StripOnInput->False],
ItemBox["\<\"\"\>",
BaseStyle->"InformationUsageSubtitleBackground",
StripOnInput->False]},
{
PaneBox[GridBox[{
{
DynamicModuleBox[{System`InformationDump`open$$ = {
False, False, False, False, False, False}},
StyleBox[GridBox[{
{
TagBox[
TooltipBox[
StyleBox["\<\" Documentation\"\>", "InformationRowLabel",
StripOnInput->False],
"\"Documentation\"",
TooltipStyle->"TextStyling"],
Annotation[#, "Documentation", "Tooltip"]& ],
TemplateBox[{
TemplateBox[{
"\"Local \[RightGuillemet]\"", "paclet:ref/Plot",
"paclet:ref/Plot", "Link", {
RGBColor[0.9686274509803922, 0.4666666666666667, 0.]},
BaseStyle -> {
RGBColor[0.0784313725490196, 0.1568627450980392, 0.6]}},
"HyperlinkTemplate"], "\" \"",
StyleBox[
"\"|\"", "InformationRowLabel", StripOnInput -> False],
"\" \"",
TemplateBox[{"\"Web \[RightGuillemet]\"", {
URL[
"http://reference.wolfram.com/language/ref/Plot.html"],
None}, "http://reference.wolfram.com/language/ref/Plot.\
html", "Hyperlink", {
RGBColor[0.9686274509803922, 0.4666666666666667, 0.]},
BaseStyle -> {
RGBColor[0.0784313725490196, 0.1568627450980392, 0.6]}},
"HyperlinkTemplate"]},
"RowDefault"]},
{
PaneSelectorBox[{True->
ButtonBox[
PaneSelectorBox[{False->
TemplateBox[{"\[ThickSpace]", "\"\[ThickSpace]\"",
StyleBox[
"\"Options\"", "InformationRowLabel", StripOnInput ->
False],
DynamicBox[
FEPrivate`FrontEndResource[
"FEBitmaps", "DownPointerOpener"]]},
"RowWithSeparators"], True->
TemplateBox[{"\[ThickSpace]", "\"\[ThickSpace]\"",
StyleBox[
"\"Options\"", "InformationRowLabel", StripOnInput ->
False],
DynamicBox[
FEPrivate`FrontEndResource[
"FEBitmaps", "DownPointerOpenerHot"]]},
"RowWithSeparators"]}, Dynamic[
CurrentValue["MouseOver"]],
FrameMargins->0,
ImageSize->Automatic],
Appearance->None,
BaseStyle->None,
ButtonFunction:>(Part[System`InformationDump`open$$, 3] =
False),
Evaluator->Automatic,
FrameMargins->0,
ImageMargins->0,
Method->"Preemptive"], False->
ButtonBox[
PaneSelectorBox[{False->
TemplateBox[{"\[ThickSpace]", "\"\[ThickSpace]\"",
StyleBox[
"\"Options\"", "InformationRowLabel", StripOnInput ->
False],
DynamicBox[
FEPrivate`FrontEndResource[
"FEBitmaps", "RightPointerOpener"]]},
"RowWithSeparators"], True->
TemplateBox[{"\[ThickSpace]", "\"\[ThickSpace]\"",
StyleBox[
"\"Options\"", "InformationRowLabel", StripOnInput ->
False],
DynamicBox[
FEPrivate`FrontEndResource[
"FEBitmaps", "RightPointerOpenerHot"]]},
"RowWithSeparators"]}, Dynamic[
CurrentValue["MouseOver"]],
FrameMargins->0,
ImageSize->Automatic],
Appearance->None,
BaseStyle->None,
ButtonFunction:>(Part[System`InformationDump`open$$, 3] =
True),
Evaluator->Automatic,
FrameMargins->0,
ImageMargins->0,
Method->"Preemptive"]}, Dynamic[
FEPrivate`Part[System`InformationDump`open$$, 3]]],
PaneSelectorBox[{True->GridBox[{
{
RowBox[{"AlignmentPoint", "\[Rule]", "Center"}]},
{
RowBox[{"AspectRatio", "\[Rule]",
FractionBox["1", "GoldenRatio"]}]},
{
RowBox[{"Axes", "\[Rule]", "True"}]},
{
RowBox[{"AxesLabel", "\[Rule]", "None"}]},
{
RowBox[{"AxesOrigin", "\[Rule]", "Automatic"}]},
{
RowBox[{"AxesStyle", "\[Rule]",
RowBox[{"{", "}"}]}]},
{
RowBox[{"Background", "\[Rule]", "None"}]},
{
RowBox[{"BaselinePosition", "\[Rule]", "Automatic"}]},
{
RowBox[{"BaseStyle", "\[Rule]",
RowBox[{"{", "}"}]}]},
{
RowBox[{"ClippingStyle", "\[Rule]", "None"}]},
{
RowBox[{"ColorFunction", "\[Rule]", "Automatic"}]},
{
RowBox[{"ColorFunctionScaling", "\[Rule]", "True"}]},
{
RowBox[{"ColorOutput", "\[Rule]", "Automatic"}]},
{
RowBox[{"ContentSelectable", "\[Rule]", "Automatic"}]},
{
RowBox[{
"CoordinatesToolOptions", "\[Rule]", "Automatic"}]},
{
RowBox[{
"DisplayFunction", "\[RuleDelayed]", "$DisplayFunction"}]},
{
RowBox[{"Epilog", "\[Rule]",
RowBox[{"{", "}"}]}]},
{
RowBox[{"Evaluated", "\[Rule]", "Automatic"}]},
{
RowBox[{"EvaluationMonitor", "\[Rule]", "None"}]},
{
RowBox[{"Exclusions", "\[Rule]", "Automatic"}]},
{
RowBox[{"ExclusionsStyle", "\[Rule]", "None"}]},
{
RowBox[{"Filling", "\[Rule]", "None"}]},
{
RowBox[{"FillingStyle", "\[Rule]", "Automatic"}]},
{
RowBox[{
"FormatType", "\[RuleDelayed]", "TraditionalForm"}]},
{
RowBox[{"Frame", "\[Rule]", "False"}]},
{
RowBox[{"FrameLabel", "\[Rule]", "None"}]},
{
RowBox[{"FrameStyle", "\[Rule]",
RowBox[{"{", "}"}]}]},
{
RowBox[{"FrameTicks", "\[Rule]", "Automatic"}]},
{
RowBox[{"FrameTicksStyle", "\[Rule]",
RowBox[{"{", "}"}]}]},
{
RowBox[{"GridLines", "\[Rule]", "None"}]},
{
RowBox[{"GridLinesStyle", "\[Rule]",
RowBox[{"{", "}"}]}]},
{
RowBox[{"ImageMargins", "\[Rule]", "0.`"}]},
{
RowBox[{"ImagePadding", "\[Rule]", "All"}]},
{
RowBox[{"ImageSize", "\[Rule]", "Automatic"}]},
{
RowBox[{"ImageSizeRaw", "\[Rule]", "Automatic"}]},
{
RowBox[{"LabelingSize", "\[Rule]", "Automatic"}]},
{
RowBox[{"LabelStyle", "\[Rule]",
RowBox[{"{", "}"}]}]},
{
RowBox[{"MaxRecursion", "\[Rule]", "Automatic"}]},
{
RowBox[{"Mesh", "\[Rule]", "None"}]},
{
RowBox[{"MeshFunctions", "\[Rule]",
RowBox[{"{",
RowBox[{"#1", "&"}], "}"}]}]},
{
RowBox[{"MeshShading", "\[Rule]", "None"}]},
{
RowBox[{"MeshStyle", "\[Rule]", "Automatic"}]},
{
RowBox[{"Method", "\[Rule]", "Automatic"}]},
{
RowBox[{
"PerformanceGoal", "\[RuleDelayed]", "$PerformanceGoal"}]},
{
RowBox[{"PlotLabel", "\[Rule]", "None"}]},
{
RowBox[{"PlotLabels", "\[Rule]", "None"}]},
{
RowBox[{"PlotLayout", "\[Rule]", "Automatic"}]},
{
RowBox[{"PlotLegends", "\[Rule]", "None"}]},
{
RowBox[{"PlotPoints", "\[Rule]", "Automatic"}]},
{
RowBox[{"PlotRange", "\[Rule]",
RowBox[{"{",
RowBox[{"Full", ",", "Automatic"}], "}"}]}]},
{
RowBox[{"PlotRangeClipping", "\[Rule]", "True"}]},
{
RowBox[{"PlotRangePadding", "\[Rule]", "Automatic"}]},
{
RowBox[{"PlotRegion", "\[Rule]", "Automatic"}]},
{
RowBox[{"PlotStyle", "\[Rule]", "Automatic"}]},
{
RowBox[{"PlotTheme", "\[RuleDelayed]", "$PlotTheme"}]},
{
RowBox[{"PreserveImageOptions", "\[Rule]", "Automatic"}]},
{
RowBox[{"Prolog", "\[Rule]",
RowBox[{"{", "}"}]}]},
{
RowBox[{"RegionFunction", "\[Rule]",
RowBox[{"(",
RowBox[{"True", "&"}], ")"}]}]},
{
RowBox[{"RotateLabel", "\[Rule]", "True"}]},
{
RowBox[{"ScalingFunctions", "\[Rule]", "None"}]},
{
RowBox[{"TargetUnits", "\[Rule]", "Automatic"}]},
{
RowBox[{"Ticks", "\[Rule]", "Automatic"}]},
{
RowBox[{"TicksStyle", "\[Rule]",
RowBox[{"{", "}"}]}]},
{
RowBox[{
"WorkingPrecision", "\[Rule]", "MachinePrecision"}]},
{
StyleBox[
TemplateBox[{
"\"(\"", "\"\[InvisibleSpace]\"", "64", "\" total)\""},
"RowDefault"], "InformationRowOpener",
StripOnInput->False]}
},
BaselinePosition->{Baseline, {1, 1}},
DefaultBaseStyle->"Column",
GridBoxAlignment->{"Columns" -> {{Left}}},
GridBoxItemSize->{
"Columns" -> {{Automatic}}, "Rows" -> {{1.}}}], False->
RowBox[{
RowBox[{"AlignmentPoint", "\[Rule]", "Center"}],
"\[ThinSpace]",
StyleBox["\<\"\[Ellipsis]\"\>", "InformationRowOpener",
StripOnInput->False], "\[ThinSpace]",
StyleBox[
TemplateBox[{
"\"(\"", "\"\[InvisibleSpace]\"", "64", "\" total)\""},
"RowDefault"], "InformationRowOpener",
StripOnInput->False]}]}, Dynamic[
FEPrivate`Part[System`InformationDump`open$$, 3]],
BaselinePosition->Baseline,
ImageSize->Automatic]},
{
TagBox[
TooltipBox[
StyleBox["\<\" Attributes\"\>", "InformationRowLabel",
StripOnInput->False],
"\"Attributes\"",
TooltipStyle->"TextStyling"],
Annotation[#, "Attributes", "Tooltip"]& ],
RowBox[{"{",
RowBox[{
"HoldAll", ",", "Protected", ",", "ReadProtected"}],
"}"}]},
{
TagBox[
TooltipBox[
StyleBox["\<\" Full Name\"\>", "InformationRowLabel",
StripOnInput->False],
"\"FullName\"",
TooltipStyle->"TextStyling"],
Annotation[#, "FullName",
"Tooltip"]& ], "\<\"System`Plot\"\>"}
},
AutoDelete->False,
GridBoxAlignment->{"Columns" -> {Right, Left}},
GridBoxDividers->None,
GridBoxItemSize->{"Columns" -> {Automatic, Automatic}},
GridBoxSpacings->{"Columns" -> {
Offset[0.27999999999999997`], {
Offset[0.5599999999999999]},
Offset[0.27999999999999997`]}, "Rows" -> {
Offset[0.2], {
Offset[0.8]},
Offset[0.2]}}], "DialogStyle",
StripOnInput->False],
DynamicModuleValues:>{}]}
},
DefaultBaseStyle->"Column",
GridBoxAlignment->{"Columns" -> {{Left}}},
GridBoxDividers->{"Columns" -> {{False}}, "Rows" -> {{False}}},
GridBoxItemSize->{
"Columns" -> {{Automatic}}, "Rows" -> {{Automatic}}},
GridBoxSpacings->{"Columns" -> {
Offset[0.27999999999999997`], {
Offset[0.5599999999999999]},
Offset[0.27999999999999997`]}, "Rows" -> {
Offset[0.2], {
Offset[3.6]},
Offset[0.2]}}],
FrameMargins->{{6, 6}, {6, 3}}], ""},
{
ItemBox[
TagBox[
ButtonBox[
PaneSelectorBox[{False->
DynamicBox[FEPrivate`FrontEndResource[
"FEBitmaps", "UpPointerOpener"]], True->
DynamicBox[FEPrivate`FrontEndResource[
"FEBitmaps", "UpPointerOpenerHot"]]}, Dynamic[
System`InformationDump`mouseOver$$]],
Alignment->Left,
Appearance->{"Default" -> None},
ButtonFunction:>FEPrivate`Set[
System`InformationDump`open$$, False],
Evaluator->Automatic,
FrameMargins->{{9, 0}, {0, 0}},
ImageMargins->0,
ImageSize->Full,
Method->"Preemptive"],
EventHandlerTag[{
"MouseEntered" :>
FEPrivate`Set[System`InformationDump`mouseOver$$, True],
"MouseExited" :>
FEPrivate`Set[System`InformationDump`mouseOver$$, False],
Method -> "Preemptive", PassEventsDown -> Automatic,
PassEventsUp -> True}]],
BaseStyle->"InformationTitleBackground",
StripOnInput->False], "\[SpanFromLeft]"}
},
AutoDelete->False,
FrameStyle->Directive[
GrayLevel[0.8],
Thickness[Tiny]],
GridBoxAlignment->{"Columns" -> {Left, Right}, "Rows" -> {{Center}}},
GridBoxDividers->{
"Columns" -> {{None}}, "Rows" -> {False, {True}, False}},
GridBoxItemSize->{
"Columns" -> {{Automatic}}, "Rows" -> {{Automatic}}}],
"Grid"], False->
TagBox[GridBox[{
{
ItemBox[
PaneBox[
StyleBox["\<\" Symbol\"\>", "InformationTitleText",
StripOnInput->False],
FrameMargins->{{4, 0}, {-1, 1}}],
BaseStyle->"InformationTitleBackground",
StripOnInput->False],
ItemBox[
PaneBox[
TooltipBox[
ButtonBox[
PaneSelectorBox[{False->
DynamicBox[FEPrivate`FrontEndResource[
"FEBitmaps", "InformationHelpIcon"],
ImageSizeCache->{14.3, {4., 10.3}}], True->
DynamicBox[FEPrivate`FrontEndResource[
"FEBitmaps", "InformationHelpIconHot"],
ImageSizeCache->{14.3, {4., 10.3}}]}, Dynamic[
CurrentValue["MouseOver"]]],
Appearance->None,
BaseStyle->"Link",
ButtonData->"paclet:ref/Plot",
ButtonNote->"paclet:ref/Plot"],
"\"paclet:ref/Plot\""],
FrameMargins->{{0, 4}, {0, 2}}],
BaseStyle->"InformationTitleBackground",
StripOnInput->False]},
{
ItemBox[
PaneBox[
StyleBox["\<\"\\!\\(\\*RowBox[{\\\"Plot\\\", \\\"[\\\", \
RowBox[{StyleBox[\\\"f\\\", \\\"TI\\\"], \\\",\\\", RowBox[{\\\"{\\\", \
RowBox[{StyleBox[\\\"x\\\", \\\"TI\\\"], \\\",\\\", \
SubscriptBox[StyleBox[\\\"x\\\", \\\"TI\\\"], StyleBox[\\\"min\\\", \
\\\"TI\\\"]], \\\",\\\", SubscriptBox[StyleBox[\\\"x\\\", \\\"TI\\\"], \
StyleBox[\\\"max\\\", \\\"TI\\\"]]}], \\\"}\\\"}]}], \\\"]\\\"}]\\) \:7ed8\
\:5236\:51fd\:6570 \\!\\(\\*StyleBox[\\\"f\\\", \\\"TI\\\"]\\) \:7684\:56fe\
\:7ebf\:ff0c\:5176\:81ea\:53d8\:91cf \\!\\(\\*StyleBox[\\\"x\\\", \\\"TI\\\"]\
\\) \:7684\:8303\:56f4\:4e3a\:4ece \\!\\(\\*SubscriptBox[StyleBox[\\\"x\\\", \
\\\"TI\\\"], StyleBox[\\\"min\\\", \\\"TI\\\"]]\\) \:5230 \
\\!\\(\\*SubscriptBox[StyleBox[\\\"x\\\", \\\"TI\\\"], StyleBox[\\\"max\\\", \
\\\"TI\\\"]]\\). \\n\\!\\(\\*RowBox[{\\\"Plot\\\", \\\"[\\\", \
RowBox[{RowBox[{\\\"{\\\", RowBox[{SubscriptBox[StyleBox[\\\"f\\\", \
\\\"TI\\\"], StyleBox[\\\"1\\\", \\\"TR\\\"]], \\\",\\\", \
SubscriptBox[StyleBox[\\\"f\\\", \\\"TI\\\"], StyleBox[\\\"2\\\", \
\\\"TR\\\"]], \\\",\\\", StyleBox[\\\"\[Ellipsis]\\\", \\\"TR\\\"]}], \\\"}\\\
\"}], \\\",\\\", RowBox[{\\\"{\\\", RowBox[{StyleBox[\\\"x\\\", \\\"TI\\\"], \
\\\",\\\", SubscriptBox[StyleBox[\\\"x\\\", \\\"TI\\\"], \
StyleBox[\\\"min\\\", \\\"TI\\\"]], \\\",\\\", \
SubscriptBox[StyleBox[\\\"x\\\", \\\"TI\\\"], StyleBox[\\\"max\\\", \
\\\"TI\\\"]]}], \\\"}\\\"}]}], \\\"]\\\"}]\\) \:7ed8\:5236\:591a\:4e2a\:51fd\
\:6570 \\!\\(\\*SubscriptBox[StyleBox[\\\"f\\\", \\\"TI\\\"], \
StyleBox[\\\"i\\\", \\\"TI\\\"]]\\). \\n\\!\\(\\*RowBox[{\\\"Plot\\\", \
\\\"[\\\", RowBox[{RowBox[{\\\"{\\\", RowBox[{StyleBox[\\\"\[Ellipsis]\\\", \
\\\"TR\\\"], \\\",\\\", RowBox[{StyleBox[\\\"w\\\", \\\"TI\\\"], \\\"[\\\", \
SubscriptBox[StyleBox[\\\"f\\\", \\\"TI\\\"], StyleBox[\\\"i\\\", \
\\\"TI\\\"]], \\\"]\\\"}], \\\",\\\", StyleBox[\\\"\[Ellipsis]\\\", \
\\\"TR\\\"]}], \\\"}\\\"}], \\\",\\\", StyleBox[\\\"\[Ellipsis]\\\", \\\"TR\\\
\"]}], \\\"]\\\"}]\\) \:7ed8\:5236 \\!\\(\\*SubscriptBox[StyleBox[\\\"f\\\", \
\\\"TI\\\"], StyleBox[\\\"i\\\", \\\"TI\\\"]]\\) \:ff0c\:5176\:7279\:5f81\
\:7531\:7b26\:53f7\:5c01\:88c5 \\!\\(\\*StyleBox[\\\"w\\\", \\\"TI\\\"]\\) \
\:6240\:5b9a\:4e49.\\n\\!\\(\\*RowBox[{\\\"Plot\\\", \\\"[\\\", \
RowBox[{StyleBox[\\\"\[Ellipsis]\\\", \\\"TR\\\"], \\\",\\\", \
RowBox[{RowBox[{\\\"{\\\", StyleBox[\\\"x\\\", \\\"TI\\\"], \\\"}\\\"}], \\\"\
\[Element]\\\", StyleBox[\\\"reg\\\", \\\"TI\\\"]}]}], \\\"]\\\"}]\\) \:53d8\
\:91cf \\!\\(\\*StyleBox[\\\"x\\\", \\\"TI\\\"]\\) \:4ece\:51e0\:4f55\:533a\
\:57df \\!\\(\\*StyleBox[\\\"reg\\\", \\\"TI\\\"]\\) \:53d6\:503c.\"\>",
"InformationUsageText",
StripOnInput->False,
LineSpacing->{1.5, 1.5, 3.}],
FrameMargins->{{10, 10}, {8, 10}}],
BaseStyle->"InformationUsageSubtitleBackground",
StripOnInput->False],
ItemBox["\<\"\"\>",
BaseStyle->"InformationUsageSubtitleBackground",
StripOnInput->False]},
{
ItemBox[
TagBox[
ButtonBox[
PaneSelectorBox[{False->
DynamicBox[FEPrivate`FrontEndResource[
"FEBitmaps", "DownPointerOpener"],
ImageSizeCache->{11., {3., 8.}}], True->
DynamicBox[FEPrivate`FrontEndResource[
"FEBitmaps", "DownPointerOpenerHot"],
ImageSizeCache->{11., {3., 8.}}]}, Dynamic[
System`InformationDump`mouseOver$$]],
Alignment->Left,
Appearance->{"Default" -> None},
ButtonFunction:>FEPrivate`Set[
System`InformationDump`open$$, True],
Evaluator->Automatic,
FrameMargins->{{9, 0}, {0, 0}},
ImageMargins->0,
ImageSize->Full,
Method->"Preemptive"],
EventHandlerTag[{
"MouseEntered" :>
FEPrivate`Set[System`InformationDump`mouseOver$$, True],
"MouseExited" :>
FEPrivate`Set[System`InformationDump`mouseOver$$, False],
Method -> "Preemptive", PassEventsDown -> Automatic,
PassEventsUp -> True}]],
BaseStyle->"InformationTitleBackground",
StripOnInput->False], "\[SpanFromLeft]"}
},
AutoDelete->False,
FrameStyle->Directive[
GrayLevel[0.8],
Thickness[Tiny]],
GridBoxAlignment->{"Columns" -> {Left, Right}, "Rows" -> {{Center}}},
GridBoxDividers->{
"Columns" -> {{None}}, "Rows" -> {False, {True}, False}},
GridBoxItemSize->{
"Columns" -> {{Automatic}}, "Rows" -> {{Automatic}}}],
"Grid"]}, Dynamic[System`InformationDump`open$$],
BaselinePosition->Baseline,
FrameMargins->0,
ImageSize->Automatic],
DynamicModuleValues:>{}],
BaseStyle->"InformationGridFrame",
StripOnInput->False], "InformationGridPlain",
StripOnInput->False],
InformationData[<|
"ObjectType" -> "Symbol", "Usage" ->
"\!\(\*RowBox[{\"Plot\", \"[\", RowBox[{StyleBox[\"f\", \"TI\"], \",\", \
RowBox[{\"{\", RowBox[{StyleBox[\"x\", \"TI\"], \",\", SubscriptBox[StyleBox[\
\"x\", \"TI\"], StyleBox[\"min\", \"TI\"]], \",\", \
SubscriptBox[StyleBox[\"x\", \"TI\"], StyleBox[\"max\", \"TI\"]]}], \
\"}\"}]}], \"]\"}]\) \:7ed8\:5236\:51fd\:6570 \!\(\*StyleBox[\"f\", \"TI\"]\) \
\:7684\:56fe\:7ebf\:ff0c\:5176\:81ea\:53d8\:91cf \!\(\*StyleBox[\"x\", \
\"TI\"]\) \:7684\:8303\:56f4\:4e3a\:4ece \!\(\*SubscriptBox[StyleBox[\"x\", \
\"TI\"], StyleBox[\"min\", \"TI\"]]\) \:5230 \
\!\(\*SubscriptBox[StyleBox[\"x\", \"TI\"], StyleBox[\"max\", \"TI\"]]\). \n\
\!\(\*RowBox[{\"Plot\", \"[\", RowBox[{RowBox[{\"{\", \
RowBox[{SubscriptBox[StyleBox[\"f\", \"TI\"], StyleBox[\"1\", \"TR\"]], \
\",\", SubscriptBox[StyleBox[\"f\", \"TI\"], StyleBox[\"2\", \"TR\"]], \",\", \
StyleBox[\"\[Ellipsis]\", \"TR\"]}], \"}\"}], \",\", RowBox[{\"{\", \
RowBox[{StyleBox[\"x\", \"TI\"], \",\", SubscriptBox[StyleBox[\"x\", \"TI\"], \
StyleBox[\"min\", \"TI\"]], \",\", SubscriptBox[StyleBox[\"x\", \"TI\"], \
StyleBox[\"max\", \"TI\"]]}], \"}\"}]}], \"]\"}]\) \:7ed8\:5236\:591a\:4e2a\
\:51fd\:6570 \!\(\*SubscriptBox[StyleBox[\"f\", \"TI\"], StyleBox[\"i\", \"TI\
\"]]\). \n\!\(\*RowBox[{\"Plot\", \"[\", RowBox[{RowBox[{\"{\", \
RowBox[{StyleBox[\"\[Ellipsis]\", \"TR\"], \",\", RowBox[{StyleBox[\"w\", \
\"TI\"], \"[\", SubscriptBox[StyleBox[\"f\", \"TI\"], StyleBox[\"i\", \
\"TI\"]], \"]\"}], \",\", StyleBox[\"\[Ellipsis]\", \"TR\"]}], \"}\"}], \
\",\", StyleBox[\"\[Ellipsis]\", \"TR\"]}], \"]\"}]\) \:7ed8\:5236 \
\!\(\*SubscriptBox[StyleBox[\"f\", \"TI\"], StyleBox[\"i\", \"TI\"]]\) \:ff0c\
\:5176\:7279\:5f81\:7531\:7b26\:53f7\:5c01\:88c5 \!\(\*StyleBox[\"w\", \
\"TI\"]\) \:6240\:5b9a\:4e49.\n\!\(\*RowBox[{\"Plot\", \"[\", \
RowBox[{StyleBox[\"\[Ellipsis]\", \"TR\"], \",\", RowBox[{RowBox[{\"{\", \
StyleBox[\"x\", \"TI\"], \"}\"}], \"\[Element]\", StyleBox[\"reg\", \
\"TI\"]}]}], \"]\"}]\) \:53d8\:91cf \!\(\*StyleBox[\"x\", \"TI\"]\) \:4ece\
\:51e0\:4f55\:533a\:57df \!\(\*StyleBox[\"reg\", \"TI\"]\) \:53d6\:503c.",
"Documentation" -> <|
"Local" -> "paclet:ref/Plot", "Web" ->
"http://reference.wolfram.com/language/ref/Plot.html"|>, "OwnValues" ->
None, "UpValues" -> None, "DownValues" -> None, "SubValues" -> None,
"DefaultValues" -> None, "NValues" -> None, "FormatValues" -> None,
"Options" -> {
AlignmentPoint -> Center, AspectRatio -> GoldenRatio^(-1), Axes -> True,
AxesLabel -> None, AxesOrigin -> Automatic, AxesStyle -> {}, Background ->
None, BaselinePosition -> Automatic, BaseStyle -> {}, ClippingStyle ->
None, ColorFunction -> Automatic, ColorFunctionScaling -> True,
ColorOutput -> Automatic, ContentSelectable -> Automatic,
CoordinatesToolOptions -> Automatic,
DisplayFunction :> $DisplayFunction, Epilog -> {}, Evaluated ->
Automatic, EvaluationMonitor -> None, Exclusions -> Automatic,
ExclusionsStyle -> None, Filling -> None, FillingStyle -> Automatic,
FormatType :> TraditionalForm, Frame -> False, FrameLabel -> None,
FrameStyle -> {}, FrameTicks -> Automatic, FrameTicksStyle -> {},
GridLines -> None, GridLinesStyle -> {}, ImageMargins -> 0.,
ImagePadding -> All, ImageSize -> Automatic, ImageSizeRaw -> Automatic,
LabelingSize -> Automatic, LabelStyle -> {}, MaxRecursion -> Automatic,
Mesh -> None, MeshFunctions -> {#& }, MeshShading -> None, MeshStyle ->
Automatic, Method -> Automatic, PerformanceGoal :> $PerformanceGoal,
PlotLabel -> None, PlotLabels -> None, PlotLayout -> Automatic,
PlotLegends -> None, PlotPoints -> Automatic,
PlotRange -> {Full, Automatic}, PlotRangeClipping -> True,
PlotRangePadding -> Automatic, PlotRegion -> Automatic, PlotStyle ->
Automatic, PlotTheme :> $PlotTheme, PreserveImageOptions -> Automatic,
Prolog -> {}, RegionFunction -> (True& ), RotateLabel -> True,
ScalingFunctions -> None, TargetUnits -> Automatic, Ticks -> Automatic,
TicksStyle -> {}, WorkingPrecision -> MachinePrecision},
"Attributes" -> {HoldAll, Protected, ReadProtected}, "FullName" ->
"System`Plot"|>, False]]], "Output",
CellChangeTimes->{{3.8894037385941725`*^9, 3.8894037388012753`*^9},
3.890595556667139*^9},
CellLabel->"Out[26]=",ExpressionUUID->"661634b5-ff26-4760-b46a-98c4ecafa8f9"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"Options", "[", "Plot", "]"}]], "Code",
CellChangeTimes->{{3.8894037829263372`*^9, 3.8894037948104053`*^9}},
CellLabel->"In[27]:=",ExpressionUUID->"84ae3c01-436f-4eb7-8903-39a38f0b2856"],
Cell[BoxData[
RowBox[{"{",
RowBox[{
RowBox[{"AlignmentPoint", "\[Rule]", "Center"}], ",",
RowBox[{"AspectRatio", "\[Rule]",
FractionBox["1", "GoldenRatio"]}], ",",
RowBox[{"Axes", "\[Rule]", "True"}], ",",
RowBox[{"AxesLabel", "\[Rule]", "None"}], ",",
RowBox[{"AxesOrigin", "\[Rule]", "Automatic"}], ",",
RowBox[{"AxesStyle", "\[Rule]",
RowBox[{"{", "}"}]}], ",",
RowBox[{"Background", "\[Rule]", "None"}], ",",
RowBox[{"BaselinePosition", "\[Rule]", "Automatic"}], ",",
RowBox[{"BaseStyle", "\[Rule]",
RowBox[{"{", "}"}]}], ",",
RowBox[{"ClippingStyle", "\[Rule]", "None"}], ",",
RowBox[{"ColorFunction", "\[Rule]", "Automatic"}], ",",
RowBox[{"ColorFunctionScaling", "\[Rule]", "True"}], ",",
RowBox[{"ColorOutput", "\[Rule]", "Automatic"}], ",",
RowBox[{"ContentSelectable", "\[Rule]", "Automatic"}], ",",
RowBox[{"CoordinatesToolOptions", "\[Rule]", "Automatic"}], ",",
RowBox[{"DisplayFunction", "\[RuleDelayed]", "$DisplayFunction"}], ",",
RowBox[{"Epilog", "\[Rule]",
RowBox[{"{", "}"}]}], ",",
RowBox[{"Evaluated", "\[Rule]", "Automatic"}], ",",
RowBox[{"EvaluationMonitor", "\[Rule]", "None"}], ",",
RowBox[{"Exclusions", "\[Rule]", "Automatic"}], ",",
RowBox[{"ExclusionsStyle", "\[Rule]", "None"}], ",",
RowBox[{"Filling", "\[Rule]", "None"}], ",",
RowBox[{"FillingStyle", "\[Rule]", "Automatic"}], ",",
RowBox[{"FormatType", "\[RuleDelayed]", "TraditionalForm"}], ",",
RowBox[{"Frame", "\[Rule]", "False"}], ",",
RowBox[{"FrameLabel", "\[Rule]", "None"}], ",",
RowBox[{"FrameStyle", "\[Rule]",
RowBox[{"{", "}"}]}], ",",
RowBox[{"FrameTicks", "\[Rule]", "Automatic"}], ",",
RowBox[{"FrameTicksStyle", "\[Rule]",
RowBox[{"{", "}"}]}], ",",
RowBox[{"GridLines", "\[Rule]", "None"}], ",",
RowBox[{"GridLinesStyle", "\[Rule]",
RowBox[{"{", "}"}]}], ",",
RowBox[{"ImageMargins", "\[Rule]", "0.`"}], ",",
RowBox[{"ImagePadding", "\[Rule]", "All"}], ",",
RowBox[{"ImageSize", "\[Rule]", "Automatic"}], ",",
RowBox[{"ImageSizeRaw", "\[Rule]", "Automatic"}], ",",
RowBox[{"LabelingSize", "\[Rule]", "Automatic"}], ",",
RowBox[{"LabelStyle", "\[Rule]",
RowBox[{"{", "}"}]}], ",",
RowBox[{"MaxRecursion", "\[Rule]", "Automatic"}], ",",
RowBox[{"Mesh", "\[Rule]", "None"}], ",",
RowBox[{"MeshFunctions", "\[Rule]",
RowBox[{"{",
RowBox[{"#1", "&"}], "}"}]}], ",",
RowBox[{"MeshShading", "\[Rule]", "None"}], ",",
RowBox[{"MeshStyle", "\[Rule]", "Automatic"}], ",",
RowBox[{"Method", "\[Rule]", "Automatic"}], ",",
RowBox[{"PerformanceGoal", "\[RuleDelayed]", "$PerformanceGoal"}], ",",
RowBox[{"PlotLabel", "\[Rule]", "None"}], ",",
RowBox[{"PlotLabels", "\[Rule]", "None"}], ",",
RowBox[{"PlotLayout", "\[Rule]", "Automatic"}], ",",
RowBox[{"PlotLegends", "\[Rule]", "None"}], ",",
RowBox[{"PlotPoints", "\[Rule]", "Automatic"}], ",",
RowBox[{"PlotRange", "\[Rule]",
RowBox[{"{",
RowBox[{"Full", ",", "Automatic"}], "}"}]}], ",",
RowBox[{"PlotRangeClipping", "\[Rule]", "True"}], ",",
RowBox[{"PlotRangePadding", "\[Rule]", "Automatic"}], ",",
RowBox[{"PlotRegion", "\[Rule]", "Automatic"}], ",",
RowBox[{"PlotStyle", "\[Rule]", "Automatic"}], ",",
RowBox[{"PlotTheme", "\[RuleDelayed]", "$PlotTheme"}], ",",
RowBox[{"PreserveImageOptions", "\[Rule]", "Automatic"}], ",",
RowBox[{"Prolog", "\[Rule]",
RowBox[{"{", "}"}]}], ",",
RowBox[{"RegionFunction", "\[Rule]",
RowBox[{"(",
RowBox[{"True", "&"}], ")"}]}], ",",
RowBox[{"RotateLabel", "\[Rule]", "True"}], ",",
RowBox[{"ScalingFunctions", "\[Rule]", "None"}], ",",
RowBox[{"TargetUnits", "\[Rule]", "Automatic"}], ",",
RowBox[{"Ticks", "\[Rule]", "Automatic"}], ",",
RowBox[{"TicksStyle", "\[Rule]",
RowBox[{"{", "}"}]}], ",",
RowBox[{"WorkingPrecision", "\[Rule]", "MachinePrecision"}]}],
"}"}]], "Output",
CellChangeTimes->{{3.889403791066784*^9, 3.889403795372537*^9},
3.8905955566967244`*^9},
CellLabel->"Out[27]=",ExpressionUUID->"169ad688-bd5e-481f-a2bb-f60b45e85f9d"]
}, Open ]]
}, Open ]],
Cell[CellGroupData[{
Cell["6. \:5355\:5143\:8bbe\:7f6e", "Section",
CellChangeTimes->{{3.8852157387451005`*^9, 3.8852157431375265`*^9}, {