├── .python-version
├── messages
├── 1.9.0.txt
├── 1.7.0.txt
├── 1.3.0.txt
├── 1.8.0.txt
├── 1.6.0.txt
├── 0.12.txt
├── 1.4.0.txt
├── 1.3.2.txt
├── 1.3.3.txt
├── 1.3.1.txt
├── install.txt
└── 1.5.0.txt
├── Side Bar.sublime-menu
├── messages.json
├── SymbolListConstants.tmPreferences
├── Comments.tmPreferences
├── Context.sublime-menu
├── WolframLanguage.sublime-settings
├── Main.sublime-menu
├── CHANGELOG.md
├── Default.sublime-commands
├── WolframLanguage.sublime-color-scheme
├── plugin.py
└── WolframLanguage.sublime-completions
/.python-version:
--------------------------------------------------------------------------------
1 | 3.8
--------------------------------------------------------------------------------
/messages/1.9.0.txt:
--------------------------------------------------------------------------------
1 | => 1.9.0
2 |
3 | XX Dec, 2022
4 |
5 |
6 |
--------------------------------------------------------------------------------
/messages/1.7.0.txt:
--------------------------------------------------------------------------------
1 | => 1.7.0
2 |
3 | 4 July, 2022
4 |
5 | 13.1 syntax updates
6 |
7 |
8 |
--------------------------------------------------------------------------------
/messages/1.3.0.txt:
--------------------------------------------------------------------------------
1 | Release Notes
2 |
3 | 1.3
4 |
5 | August 30, 2021
6 |
7 |
8 | Now supporting Sublime 4
--------------------------------------------------------------------------------
/messages/1.8.0.txt:
--------------------------------------------------------------------------------
1 | => 1.8.0
2 |
3 | 10 Oct, 2022
4 |
5 | Add links to free Wolfram Engine.
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Side Bar.sublime-menu:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "command": "side_bar_editor_open",
4 | "caption": "Open in System Editor",
5 | "args": {"paths": []}
6 | }
7 | ]
8 |
--------------------------------------------------------------------------------
/messages/1.6.0.txt:
--------------------------------------------------------------------------------
1 | => 1.6.0
2 |
3 | 12 May, 2022
4 |
5 | Add "Download Wolfram Engine" links to main menu and command palette
6 |
7 | support new 13.1 syntax "PackedArray"::["Real64"]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/messages/0.12.txt:
--------------------------------------------------------------------------------
1 | => 0.12
2 |
3 | 5 Aug, 2019
4 |
5 | Start relying on the WolframLanguage Sublime package. There is no longer a sublime-wolfram package to install. Please read the README for changes.
6 |
7 |
8 |
--------------------------------------------------------------------------------
/messages/1.4.0.txt:
--------------------------------------------------------------------------------
1 | => 1.4.0
2 |
3 | 25 Oct, 2021
4 |
5 | Fix 415574: unrecognized symbol followed by `[` should have scope `variable.function`
6 |
7 | Also recognize `f @ x` syntax for function call, but do NOT recognize `a ~f~ b` or `a // f`
8 |
9 |
10 |
--------------------------------------------------------------------------------
/messages/1.3.2.txt:
--------------------------------------------------------------------------------
1 | => 1.3.2
2 |
3 | 27 Sep, 2021
4 |
5 | Fixed problem with dialog saying `"Language Server kernel did not initialize properly after 10 seconds."`
6 |
7 | The kernel actually did start correctly, but the timeout for the dialog was not being handled properly.
8 |
9 |
10 |
--------------------------------------------------------------------------------
/messages/1.3.3.txt:
--------------------------------------------------------------------------------
1 | => 1.3.3
2 |
3 | 11 Oct, 2021
4 |
5 | Treat mdpopups module as optional
6 |
7 | If a kernel cannot be started, then do not also show the timeout dialog after 10 seconds, that is just extra noise.
8 |
9 | `lsp_server_enabled` setting: Allow selectively disabling Wolfram Language LSP
10 |
11 |
12 |
--------------------------------------------------------------------------------
/messages.json:
--------------------------------------------------------------------------------
1 | {
2 | "1.3.1": "messages/1.3.1.txt",
3 | "1.3.2": "messages/1.3.2.txt",
4 | "1.3.3": "messages/1.3.3.txt",
5 | "1.4.0": "messages/1.4.0.txt",
6 | "1.5.0": "messages/1.5.0.txt",
7 | "1.6.0": "messages/1.6.0.txt",
8 | "1.7.0": "messages/1.7.0.txt",
9 | "1.8.0": "messages/1.8.0.txt",
10 | "1.9.0": "messages/1.9.0.txt",
11 | "install": "messages/install.txt"
12 | }
--------------------------------------------------------------------------------
/messages/1.3.1.txt:
--------------------------------------------------------------------------------
1 | => 1.3.1
2 |
3 | 23 Sep, 2021
4 |
5 | First release from official Wolfram Research GitHub repo
6 |
7 | [https://github.com/WolframResearch/Sublime-WolframLanguage](https://github.com/WolframResearch/Sublime-WolframLanguage)
8 |
9 | Forked and major rewrite from [https://github.com/ViktorQvarfordt/Sublime-WolframLanguage](https://github.com/ViktorQvarfordt/Sublime-WolframLanguage)
10 |
11 |
12 |
--------------------------------------------------------------------------------
/messages/install.txt:
--------------------------------------------------------------------------------
1 |
2 | Official Sublime Text package for Wolfram Language
3 |
4 | This package requires that LSP support is installed
5 |
6 | It provides code completion, syntax highlighting, jump to function definition, documentation on hover, code formatting, diagnostics and code fix suggestions
7 |
8 | [https://github.com/WolframResearch/Sublime-WolframLanguage](https://github.com/WolframResearch/Sublime-WolframLanguage)
9 |
10 |
11 |
--------------------------------------------------------------------------------
/SymbolListConstants.tmPreferences:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | name
5 | Symbol List: Constants
6 | scope
7 | source.wolfram entity.name.constant.wolfram
8 | settings
9 |
10 | showInSymbolList
11 | 1
12 | showInIndexedSymbolList
13 | 1
14 |
15 |
16 |
--------------------------------------------------------------------------------
/messages/1.5.0.txt:
--------------------------------------------------------------------------------
1 | => 1.5.0
2 |
3 | 7 Mar, 2022
4 |
5 | Open notebooks support.
6 |
7 | Ensure an empty directory to use as working directory
8 |
9 | Fix logic for resolving kernel paths
10 |
11 | Should try new versions as well as older versions
12 |
13 | Increase timeout to 15 seconds and add timeout_warning_enabled setting
14 |
15 | Syntax error for invalid \|XXXXXX character syntax
16 |
17 | Fix 419286: "Open in Notebook Editor" opens other files than recognized by FE
18 |
19 | Reorganize the "Open in Notebook Editor" menu items
20 |
21 | Add context menu item
22 |
23 | Move implementations into their own files
24 |
25 | Rename "Open in Notebook Editor" -> "Open in System Editor"
26 |
27 | 13.0.1 syntax updates
28 |
29 |
30 |
--------------------------------------------------------------------------------
/Comments.tmPreferences:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | name
6 | Comments
7 | scope
8 | source.wolfram
9 | settings
10 |
11 | shellVariables
12 |
13 |
14 | name
15 | TM_COMMENT_START
16 | value
17 | (*
18 |
19 |
20 | name
21 | TM_COMMENT_END
22 | value
23 | *)
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/Context.sublime-menu:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "command": "context_editor_open",
4 | "caption": "Open in System Editor"
5 | }
6 | ,
7 | {
8 | "caption": "Wolfram Language",
9 | "children":
10 | [
11 | {
12 | "command": "lsp_symbol_references",
13 | "caption": "Find Symbol References"
14 | },
15 | {
16 | "command": "lsp_symbol_definition",
17 | "caption": "Go To Symbol Definition"
18 | },
19 | {
20 | "command": "lsp_format_document",
21 | "caption": "Format Document"
22 | },
23 | {
24 | "command": "lsp_format_document_range",
25 | "caption": "Format Selection"
26 | }
27 | ]
28 | }
29 | ]
30 |
--------------------------------------------------------------------------------
/WolframLanguage.sublime-settings:
--------------------------------------------------------------------------------
1 | {
2 | //
3 | // Enables the Wolfram language server
4 | //
5 | "lsp_server_enabled": true,
6 |
7 | //
8 | // Enables the timeout warning if the kernel does not start after 15 seconds
9 | //
10 | "timeout_warning_enabled": true,
11 |
12 | //
13 | // WolframKernel for the Wolfram language server
14 | //
15 | // This defaults to platform-specific values
16 | //
17 | // Change this setting to use a different kernel
18 | //
19 | "kernel": "<>",
20 |
21 | //
22 | // Command for the Wolfram language server
23 | //
24 | // The special value `kernel` will be replaced with the value of the "kernel" setting
25 | //
26 | "lsp_server_command":
27 | [
28 | "`kernel`",
29 | "-noinit",
30 | "-noprompt",
31 | "-nopaclet",
32 | "-noicon",
33 | "-nostartuppaclets",
34 | "-run",
35 | "Needs[\"LSPServer`\"];LSPServer`StartServer[]"
36 | ],
37 |
38 | //
39 | // Experimental settings for the Wolfram language server
40 | //
41 | // "implicitTokens": [],
42 | // "bracketMatcher": false,
43 |
44 | "extensions":
45 | [
46 | "wl",
47 | "m",
48 | "wls",
49 | "wlt",
50 | "mt"
51 | ],
52 |
53 | //
54 | // This allows for symbols like $name to be selected without leaving the $ out
55 | //
56 | "word_separators": "./\\()\"'-:,.;<>~!@#%^&*|+=[]{}`~?_",
57 | }
58 |
--------------------------------------------------------------------------------
/Main.sublime-menu:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "id": "preferences",
4 | "children":
5 | [
6 | {
7 | "caption": "Package Settings",
8 | "id": "package-settings",
9 | "children":
10 | [
11 | {
12 | "caption": "Wolfram Language",
13 | "children":
14 | [
15 | {
16 | "caption": "Settings",
17 | "command": "edit_settings",
18 | "args":
19 | {
20 | "base_file": "${packages}/WolframLanguage/WolframLanguage.sublime-settings"
21 | }
22 | },
23 | {
24 | "caption": "-"
25 | },
26 | {
27 | "caption": "Documentation",
28 | "command": "wolfram_language_open_site",
29 | "args":
30 | {
31 | "url": "https://github.com/WolframResearch/Sublime-WolframLanguage"
32 | }
33 | },
34 | {
35 | "caption": "Download Wolfram Engine",
36 | "command": "wolfram_language_open_site",
37 | "args":
38 | {
39 | "url": "https://www.wolfram.com/engine/"
40 | }
41 | }
42 | ]
43 | }
44 | ]
45 | }
46 | ]
47 | }
48 | ]
49 |
--------------------------------------------------------------------------------
/CHANGELOG.md:
--------------------------------------------------------------------------------
1 |
2 | ## 1.9.0 - XX Dec, 2022
3 |
4 |
5 | ## 1.8.0 - 10 Oct, 2022
6 |
7 | Add links to free Wolfram Engine.
8 |
9 |
10 | ## 1.7.0 - 4 July, 2022
11 |
12 | 13.1 syntax updates
13 |
14 |
15 | ## 1.6.0 - XX May, 2022
16 |
17 | Add "Download Wolfram Engine" links to main menu and command palette
18 |
19 | support new 13.1 syntax `"PackedArray"::["Real64"]`
20 |
21 |
22 | ## 1.5.0 - 7 Mar, 2022
23 |
24 | Open notebooks support.
25 |
26 | Ensure an empty directory to use as working directory
27 |
28 | Should try new versions as well as older versions
29 |
30 | Increase timeout to 15 seconds and add timeout_warning_enabled setting
31 |
32 | Syntax error for invalid `\|XXXXXX` character syntax
33 |
34 | Reorganize the "Open in Notebook Editor" menu items
35 |
36 | Add context menu item
37 |
38 | Rename "Open in Notebook Editor" -> "Open in System Editor"
39 |
40 | 13.0.1 syntax updates
41 |
42 |
43 | ### Fixes
44 |
45 | Fix 419286: "Open in Notebook Editor" opens other files than recognized by FE
46 |
47 | Fix logic for resolving kernel paths
48 |
49 |
50 | ## 1.4.0 - 25 Oct, 2021
51 |
52 | Fix 415574: unrecognized symbol followed by `[` should have scope `variable.function`
53 |
54 | Also recognize `f @ x` syntax for function call, but do NOT recognize `a ~f~ b` or `a // f`
55 |
56 |
57 | ## 1.3.3 - 11 Oct, 2021
58 |
59 | Treat mdpopups module as optional
60 |
61 | If a kernel cannot be started, then do not also show the timeout dialog after 10 seconds, that is just extra noise.
62 |
63 | `lsp_server_enabled` setting: Allow selectively disabling Wolfram Language LSP
64 |
65 |
66 | ## 1.3.2 - 27 Sep, 2021
67 |
68 | Fixed problem with dialog saying `"Language Server kernel did not initialize properly after 10 seconds."`
69 |
70 | The kernel actually did start correctly, but the timeout for the dialog was not being handled properly.
71 |
72 |
73 | ## 1.3.1 - 23 Sep, 2021
74 |
75 | First release from official Wolfram Research GitHub repo
76 |
77 | [https://github.com/WolframResearch/Sublime-WolframLanguage](https://github.com/WolframResearch/Sublime-WolframLanguage)
78 |
79 | Forked and major rewrite from [https://github.com/ViktorQvarfordt/Sublime-WolframLanguage](https://github.com/ViktorQvarfordt/Sublime-WolframLanguage)
80 |
81 |
82 | ## 1.3.0 - 30 Aug, 2021
83 |
84 | Now supporting Sublime 4
85 |
86 |
87 | ## 0.12 - 5 Aug, 2019
88 |
89 | Start relying on the WolframLanguage Sublime package. There is no longer a sublime-wolfram package to install. Please read the README for changes.
90 |
--------------------------------------------------------------------------------
/Default.sublime-commands:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "caption": "Wolfram Language: Settings",
4 | "command": "edit_settings",
5 | "args": {
6 | "base_file": "${packages}/WolframLanguage/WolframLanguage.sublime-settings",
7 | "default": "{\n$0\n}\n"
8 | }
9 | },
10 | {
11 | "caption": "Wolfram Language: Download Wolfram Engine",
12 | "command": "wolfram_language_open_site",
13 | "args": {
14 | "url": "https://www.wolfram.com/engine/"
15 | }
16 | }
17 | // ,
18 | // BEGIN_DEBUG
19 | // {
20 | // "caption": "Wolfram Language: Enable Bracket Matcher Debug Mode",
21 | // "command": "lsp_execute",
22 | // "args": {"session_name": "wolfram", "command_name": "enable_bracket_matcher_debug_mode", "command_args":[]}
23 | // }
24 | // ,
25 | // {
26 | // "caption": "Wolfram Language: Disable Bracket Matcher Debug Mode",
27 | // "command": "lsp_execute",
28 | // "args": {"session_name": "wolfram", "command_name": "disable_bracket_matcher_debug_mode", "command_args":[]}
29 | // }
30 | // ,
31 | // {
32 | // "caption": "Wolfram Language: Enable Bracket Matcher Design Colors",
33 | // "command": "lsp_execute",
34 | // "args": {"session_name": "wolfram", "command_name": "enable_bracket_matcher_design_colors", "command_args":[]}
35 | // }
36 | // ,
37 | // {
38 | // "caption": "Wolfram Language: Disable Bracket Matcher Design Colors",
39 | // "command": "lsp_execute",
40 | // "args": {"session_name": "wolfram", "command_name": "disable_bracket_matcher_design_colors", "command_args":[]}
41 | // }
42 | // ,
43 | // {
44 | // "caption": "Wolfram Language: Enable Bracket Matcher Display Insertion Text",
45 | // "command": "lsp_execute",
46 | // "args": {"session_name": "wolfram", "command_name": "enable_bracket_matcher_display_insertion_text", "command_args":[]}
47 | // }
48 | // ,
49 | // {
50 | // "caption": "Wolfram Language: Disable Bracket Matcher Display Insertion Text",
51 | // "command": "lsp_execute",
52 | // "args": {"session_name": "wolfram", "command_name": "disable_bracket_matcher_display_insertion_text", "command_args":[]}
53 | // }
54 | // ,
55 | // {
56 | // "caption": "Wolfram Language: Roundtrip Timing Test",
57 | // "command": "round_trip_timing",
58 | // "args": []
59 | // }
60 | // ,
61 | // {
62 | // "caption": "Wolfram Language: Pingpong Test",
63 | // "command": "ping_pong",
64 | // "args": []
65 | // }
66 | // ,
67 | // {
68 | // "caption": "Wolfram Language: Payload Timing Test",
69 | // "command": "payload_timing",
70 | // "args": []
71 | // }
72 | // ,
73 | // END_DEBUG
74 | ]
75 |
--------------------------------------------------------------------------------
/WolframLanguage.sublime-color-scheme:
--------------------------------------------------------------------------------
1 | {
2 | "name": "WolframLanguage",
3 | "author": "Sublime HQ Pty Ltd, Dmitri Voronianski",
4 | "variables":
5 | {
6 | "UndefinedSymbol": "rgb(0, 44, 195)", // 0.0, 0.173, 0.765
7 | // "UndefinedSymbolHash1": "rgb(0, 0, 0)",
8 | // "UndefinedSymbolHash2": "rgb(0, 195, 195)",
9 | "Comment": "rgb(69, 148, 173)", // 0.27, 0.58, 0.68
10 | "String": "rgb(102, 102, 102)", // 0.4, 0.4, 0.4
11 | "black": "hsl(0, 0%, 0%)",
12 | "black2": "hsl(60, 17%, 11%)",
13 | "black3": "hsl(70, 8%, 15%)",
14 | "blue": "hsl(210, 50%, 60%)",
15 | "blue2": "hsl(180, 36%, 54%)",
16 | "green": "hsl(114, 31%, 68%)",
17 | "grey": "hsl(0, 0%, 73%)",
18 | "grey2": "hsl(0, 0%, 60%)",
19 | "grey3": "hsl(0, 0%, 20%)",
20 | "orange": "hsl(32, 93%, 66%)",
21 | "orange2": "hsl(32, 85%, 55%)",
22 | "orange3": "hsl(40, 94%, 68%)",
23 | "pink": "hsl(300, 30%, 68%)",
24 | "red": "hsl(357, 79%, 65%)",
25 | "red2": "hsl(13, 93%, 66%)",
26 | "red3": "hsl(16, 29%, 54%)",
27 | "white": "hsl(0, 0%, 97%)",
28 | "white2": "hsl(210, 11%, 85%)",
29 | "white3": "hsl(204, 10%, 90%)",
30 | "white4": "hsl(195, 11%, 93%)",
31 | "white5": "hsl(180, 9%, 98%)"
32 | },
33 | "globals":
34 | {
35 | "foreground": "var(grey3)",
36 | "background": "var(white5)",
37 | "caret": "var(blue2)",
38 | "line_highlight": "var(white3)",
39 | "selection": "var(white3)",
40 | "selection_border": "var(white2)",
41 | "inactive_selection": "var(white4)",
42 | "misspelling": "var(red)",
43 | "shadow": "var(grey)",
44 | "active_guide": "var(blue2)",
45 | "stack_guide": "color(var(blue2) alpha(0.5))",
46 | "highlight": "var(blue2)",
47 | "find_highlight_foreground": "var(grey3)",
48 | "find_highlight": "var(orange3)",
49 | // "brackets_options": "underline",
50 | // "brackets_foreground": "var(orange)",
51 | "bracket_contents_options": "underline",
52 | "bracket_contents_foreground": "var(blue2)",
53 | "tags_options": "stippled_underline",
54 | "tags_foreground": "var(pink)"
55 | },
56 | "rules":
57 | [
58 | {
59 | "name": "Entity name function",
60 | "scope": "entity.name.function",
61 | "foreground": "var(black)"
62 | },
63 | {
64 | "name": "Entity name constant",
65 | "scope": "entity.name.constant",
66 | "foreground": "var(black)"
67 | },
68 | {
69 | "name": "Function call",
70 | "scope": "variable.function, variable.annotation",
71 | "foreground": "var(black)"
72 | },
73 | {
74 | "name": "Other symbol",
75 | "scope": "variable.other",
76 | "foreground": "var(UndefinedSymbol)"
77 | // "foreground": ["var(UndefinedSymbolHash1)", "var(UndefinedSymbolHash2)"]
78 | },
79 | {
80 | "name": "Comment",
81 | "scope": "comment, punctuation.definition.comment",
82 | "foreground": "var(Comment)"
83 | },
84 | {
85 | "name": "String",
86 | "scope": "string",
87 | "foreground": "var(String)"
88 | },
89 | {
90 | "name": "Punctuation",
91 | "scope": "punctuation.definition",
92 | "foreground": "var(black)"
93 | },
94 | {
95 | "name": "Number",
96 | "scope": "constant.numeric",
97 | "foreground": "var(black)"
98 | },
99 | {
100 | "name": "Built-in constant",
101 | "scope": "constant.language",
102 | "foreground": "var(black)",
103 | // "font_style": "italic"
104 | },
105 | {
106 | "name": "User-defined constant",
107 | "scope": "constant.character, constant.other",
108 | "foreground": "var(pink)"
109 | },
110 | {
111 | "name": "Member Variable",
112 | "scope": "variable.member",
113 | "foreground": "var(red)"
114 | },
115 | {
116 | "name": "Keyword",
117 | "scope": "keyword - keyword.operator, keyword.operator.word",
118 | "foreground": "var(pink)"
119 | },
120 | {
121 | "name": "Operators",
122 | "scope": "keyword.operator",
123 | "foreground": "var(black)"
124 | },
125 | {
126 | "name": "Punctuation",
127 | "scope": "punctuation.separator, punctuation.terminator",
128 | "foreground": "var(red3)"
129 | },
130 | {
131 | "name": "Accessor",
132 | "scope": "punctuation.accessor",
133 | "foreground": "var(red2)"
134 | },
135 | {
136 | "name": "Annotation Punctuation",
137 | "scope": "punctuation.definition.annotation",
138 | "foreground": "var(blue2)"
139 | },
140 | {
141 | "name": "JavaScript Dollar",
142 | "scope": "variable.other.dollar.only.js, variable.other.object.dollar.only.js, variable.type.dollar.only.js, support.class.dollar.only.js",
143 | "foreground": "var(blue2)"
144 | },
145 | {
146 | "name": "Storage",
147 | "scope": "storage",
148 | "foreground": "var(red)"
149 | },
150 | {
151 | "name": "Storage type",
152 | "scope": "storage.type",
153 | "foreground": "var(pink)",
154 | "font_style": "italic"
155 | },
156 | {
157 | "name": "Entity name",
158 | "scope": "entity.name - (entity.name.section | entity.name.tag | entity.name.label)",
159 | "foreground": "var(orange)"
160 | },
161 | {
162 | "name": "Inherited class",
163 | "scope": "entity.other.inherited-class",
164 | "foreground": "var(blue2)",
165 | "font_style": "italic underline"
166 | },
167 | {
168 | "name": "Function argument",
169 | "scope": "variable.parameter",
170 | "foreground": "var(orange)"
171 | },
172 | {
173 | "name": "Language variable",
174 | "scope": "variable.language",
175 | "foreground": "var(red)",
176 | "font_style": "italic"
177 | },
178 | {
179 | "name": "Tag name",
180 | "scope": "entity.name.tag",
181 | "foreground": "var(red)"
182 | },
183 | {
184 | "name": "Tag attribute",
185 | "scope": "entity.other.attribute-name",
186 | "foreground": "var(pink)"
187 | },
188 | {
189 | "name": "Library function",
190 | "scope": "support.function, support.macro",
191 | "foreground": "var(blue)",
192 | "font_style": "italic"
193 | },
194 | {
195 | "name": "Library constant",
196 | "scope": "support.constant",
197 | "foreground": "var(pink)",
198 | "font_style": "italic"
199 | },
200 | {
201 | "name": "Library class/type",
202 | "scope": "support.type, support.class",
203 | "foreground": "var(blue)",
204 | "font_style": "italic"
205 | },
206 | {
207 | "name": "Invalid",
208 | "scope": "invalid",
209 | "foreground": "var(white)",
210 | "background": "var(red)"
211 | },
212 | {
213 | "name": "Invalid deprecated",
214 | "scope": "invalid.deprecated",
215 | "foreground": "var(white)",
216 | "background": "var(orange2)"
217 | },
218 | {
219 | "name": "YAML Key",
220 | "scope": "entity.name.tag.yaml",
221 | "foreground": "var(blue2)"
222 | },
223 | // {
224 | // "name": "YAML String",
225 | // "scope": "source.yaml string.unquoted",
226 | // "foreground": "var(grey3)"
227 | // },
228 | {
229 | "name": "markup headings",
230 | "scope": "markup.heading",
231 | "font_style": "bold"
232 | },
233 | {
234 | "name": "markup headings",
235 | "scope": "markup.heading punctuation.definition.heading",
236 | "foreground": "var(red2)"
237 | },
238 | {
239 | "name": "markup h1",
240 | "scope": "markup.heading.1 punctuation.definition.heading",
241 | "foreground": "var(red)"
242 | },
243 | {
244 | "name": "markup links",
245 | "scope": "string.other.link, markup.underline.link",
246 | "foreground": "var(blue)"
247 | },
248 | {
249 | "name": "markup bold",
250 | "scope": "markup.bold",
251 | "font_style": "bold"
252 | },
253 | {
254 | "name": "markup italic",
255 | "scope": "markup.italic",
256 | "font_style": "italic"
257 | },
258 | {
259 | "name": "markup bold/italic",
260 | "scope": "markup.italic markup.bold | markup.bold markup.italic",
261 | "font_style": "bold italic"
262 | },
263 | {
264 | "name": "markup hr",
265 | "scope": "punctuation.definition.thematic-break",
266 | "foreground": "var(orange)"
267 | },
268 | {
269 | "name": "markup numbered list bullet",
270 | "scope": "markup.list.numbered.bullet",
271 | "foreground": "var(green)"
272 | },
273 | {
274 | "name": "markup blockquote",
275 | "scope": "markup.quote punctuation.definition.blockquote, markup.list punctuation.definition.list_item",
276 | "foreground": "var(orange)"
277 | },
278 | {
279 | "name": "markup code",
280 | "scope": "markup.raw",
281 | "background": "color(var(white3) alpha(0.38))"
282 | },
283 | {
284 | "name": "markup code",
285 | "scope": "markup.raw.inline",
286 | "background": "color(var(white3) alpha(0.5))"
287 | },
288 | // {
289 | // "name": "markup punctuation",
290 | // "scope": "(text punctuation.definition.italic | text punctuation.definition.bold)",
291 | // "foreground": "var(pink)"
292 | // },
293 | {
294 | "name": "diff.header",
295 | "scope": "meta.diff, meta.diff.header",
296 | "foreground": "var(pink)"
297 | },
298 | {
299 | "name": "diff.deleted",
300 | "scope": "markup.deleted",
301 | "foreground": "var(red)"
302 | },
303 | {
304 | "name": "diff.inserted",
305 | "scope": "markup.inserted",
306 | "foreground": "var(green)"
307 | },
308 | {
309 | "name": "diff.changed",
310 | "scope": "markup.changed",
311 | "foreground": "var(orange)"
312 | },
313 | {
314 | "name": "CSS Properties",
315 | "scope": "support.type.property-name",
316 | "foreground": "var(grey3)"
317 | },
318 | {
319 | "scope": "constant.numeric.line-number.match",
320 | "foreground": "var(red)"
321 | },
322 | {
323 | "scope": "message.error",
324 | "foreground": "var(red)"
325 | },
326 |
327 | {
328 | "scope": "diff.deleted",
329 | "background": "hsl(0, 60%, 93%)",
330 | "foreground_adjust": "l(- 20%)"
331 | },
332 | {
333 | "scope": "diff.deleted.char",
334 | "background": "hsl(0, 60%, 85%)",
335 | "foreground_adjust": "l(- 30%)"
336 | },
337 | {
338 | "scope": "diff.inserted",
339 | "background": "hsl(114, 60%, 93%)",
340 | "foreground_adjust": "l(- 20%)"
341 | },
342 | {
343 | "scope": "diff.inserted.char",
344 | "background": "hsl(114, 60%, 85%)",
345 | "foreground_adjust": "l(- 30%)"
346 | },
347 | ]
348 | }
--------------------------------------------------------------------------------
/plugin.py:
--------------------------------------------------------------------------------
1 | import shutil
2 | import os
3 | import sublime
4 | import sublime_plugin
5 | import threading
6 | import subprocess
7 | import sys
8 | import time
9 | import datetime
10 | import tempfile
11 |
12 | import webbrowser
13 |
14 | try:
15 | from LSP.plugin.core.settings import ClientConfig
16 | from LSP.plugin import register_plugin, unregister_plugin, AbstractPlugin, WorkspaceFolder
17 | #
18 | # mdpopups may not be available, but LSP depends on mdpopups, so if LSP is installed, then mdpopups is also installed
19 | #
20 | # Do not add a dependency on mdpopups to WolframLanguage
21 | #
22 | # verify that LSP depends on mdpopups: https://github.com/sublimelsp/LSP/blob/main/dependencies.json
23 | #
24 | import mdpopups
25 | except ImportError:
26 | #
27 | # if there is an ImportError, then that means that LSP is not installed
28 | #
29 | # we want to keep LSP as optional, so handle this by mocking the bare minimum needed to simply load the plugin
30 | #
31 | # nothing in the plugin will run, we just want to guarantee that it does not crash when loading because of
32 | # ImportError, TypeError, etc.
33 | #
34 | #
35 | # Relatedly, we also want to continue to support older versions of Sublime with older versions of Python
36 | # So, do not yet include any special type hint syntax that was introduced in Python 3.5
37 | #
38 | class AbstractPlugin:
39 | pass
40 | def register_plugin(cls):
41 | pass
42 | def unregister_plugin(cls):
43 | pass
44 |
45 | settings_file = "WolframLanguage.sublime-settings"
46 |
47 | ping_pong_counter = 0
48 | start_time = datetime.datetime(2020,1,1,0,0,0,0)
49 |
50 | class LspWolframLanguagePlugin(AbstractPlugin):
51 |
52 | timeout_warning_enabled = True
53 | kernel_initialized = False
54 |
55 | #
56 | # AbstractPlugin is created after the server has responded, so __init__
57 | # can be used as a kind of on_post_initialize
58 | #
59 | # Related issues: https://github.com/sublimelsp/LSP/issues/1860
60 | #
61 | def __init__(self, weaksession):
62 | super().__init__(weaksession)
63 | self.hrefMap = {}
64 | cls = type(self)
65 | cls.kernel_initialized = True
66 |
67 | @classmethod
68 | def name(cls):
69 | return "wolfram"
70 |
71 | @classmethod
72 | def configuration(cls):
73 | filepath = "Packages/WolframLanguage/{}".format(settings_file)
74 | settings = sublime.load_settings(settings_file)
75 |
76 | command = settings.get("lsp_server_command")
77 |
78 | kernel_path = command[0]
79 |
80 | if kernel_path == "`kernel`":
81 |
82 | kernel = settings.get("kernel")
83 |
84 | if kernel == "<>":
85 |
86 | #
87 | # kernel is the default value, so resolve to an actual path
88 | #
89 |
90 | kernel = resolveKernel();
91 |
92 | command[0] = kernel
93 |
94 | #
95 | # Any dollar sign characters $ will be treated as the beginning of an
96 | # environment variable to be expanded, so must use \\[RawDollar]
97 | #
98 | # Related lines:
99 | # command = sublime.expand_variables(self.command, variables)
100 | # around here:
101 | # https://github.com/sublimelsp/LSP/blob/main/plugin/core/types.py#L778
102 | #
103 | command = list(
104 | arg.replace("$", "\\[RawDollar]")
105 | for arg in command
106 | )
107 |
108 | implicitTokens = settings.get("implicitTokens", [])
109 | bracketMatcher = settings.get("bracketMatcher", False)
110 |
111 | initialization_options = {
112 | "implicitTokens": implicitTokens,
113 | "bracketMatcher": bracketMatcher
114 | }
115 |
116 | enabled = settings.get("lsp_server_enabled", True)
117 | if enabled:
118 | #
119 | # if LSP settings have disabled wolfram client, then respect that
120 | #
121 | # Being disabled is "poison": if disabled is specified anywhere, then client is disabled
122 | #
123 | lsp_settings = sublime.load_settings("LSP.sublime-settings")
124 | clients = lsp_settings.get("clients")
125 | wolfram_client = clients.get("wolfram", {})
126 | wolfram_client_enabled = wolfram_client.get("enabled", True)
127 | if not wolfram_client_enabled:
128 | enabled = False
129 |
130 | cls.timeout_warning_enabled = settings.get("timeout_warning_enabled", True)
131 |
132 | settings.set("command", command)
133 | settings.set("initializationOptions", initialization_options)
134 | settings.set("selector", "source.wolfram")
135 | settings.set("enabled", enabled)
136 |
137 | return settings, filepath
138 |
139 | @classmethod
140 | def on_pre_start(cls, window, initiating_view, workspace_folders, configuration):
141 |
142 | command = configuration.command
143 |
144 | if cls.timeout_warning_enabled:
145 | #
146 | # Check kernel initialization after 15 seconds
147 | #
148 | sublime.set_timeout(lambda: cls.check_kernel_initialization(command), 15000)
149 |
150 | #
151 | # Ensure an empty directory to use as working directory
152 | #
153 | cls.wolfram_tmp_dir = os.path.join(tempfile.gettempdir(), "Wolfram-LSPServer")
154 |
155 | try:
156 | os.mkdir(cls.wolfram_tmp_dir)
157 | except FileExistsError:
158 | pass
159 |
160 | #
161 | # :returns: A desired working directory, or None if you don't care
162 | #
163 | return cls.wolfram_tmp_dir
164 |
165 | @classmethod
166 | def check_kernel_initialization(cls, command):
167 |
168 | if cls.kernel_initialized:
169 | return
170 |
171 | kernel = command[0]
172 |
173 | #
174 | # User knows that the kernel did not start properly, so do not also display timeout error
175 | #
176 | if not os.path.exists(kernel):
177 | return
178 |
179 | # TODO: kill kernel, if possible
180 |
181 | msg = ""
182 | msg += "Language server kernel did not respond after 15 seconds.\n"
183 | msg += "\n"
184 | msg += "If the language kernel server did eventually start after this warning, then you can disable this warning with the timeout_warning_enabled setting.\n"
185 | msg += "\n"
186 | msg += "The most likely cause is that required paclets are not installed.\n"
187 | msg += "\n"
188 | msg += "The language server kernel process is hanging and may need to be killed manually.\n"
189 | msg += "\n"
190 | msg += "This is the command that was used:\n"
191 | msg += str(command) + "\n"
192 | msg += "\n"
193 | msg += "To ensure that required paclets are installed and up-to-date, run this in a notebook:\n"
194 | msg += "\n"
195 | msg += "PacletInstall[\"CodeParser\"]\n"
196 | msg += "PacletInstall[\"CodeInspector\"]\n"
197 | msg += "PacletInstall[\"CodeFormatter\"]\n"
198 | msg += "PacletInstall[\"LSPServer\"]\n"
199 | msg += "\n"
200 | msg += "To help diagnose the problem, run this in a notebook:\n"
201 | msg += "\n"
202 | msg += "Needs[\"LSPServer`\"]\n"
203 | msg += "LSPServer`RunServerDiagnostic[{"
204 | for a in command[:-1]:
205 | #
206 | # important to replace \ -> \\ before replacing " -> \"
207 | #
208 | msg += "\"" + a.replace("\\", "\\\\").replace("\"", "\\\"") + "\""
209 | msg += ", "
210 | msg += "\"" + command[-1].replace("\\", "\\\\").replace("\"", "\\\"") + "\""
211 | msg += "}, ProcessDirectory -> \""
212 | msg += cls.wolfram_tmp_dir.replace("\\", "\\\\")
213 | msg += "\"]\n"
214 | msg += "\n"
215 | msg += "Fix any problems then restart and try again."
216 |
217 | sublime.message_dialog(msg)
218 |
219 | def m_roundTripTest(self, params):
220 |
221 | if not sublime:
222 | return
223 |
224 | active_window = sublime.active_window()
225 |
226 | view = active_window.active_view()
227 |
228 | delT = datetime.datetime.now() - start_time
229 |
230 | print("Roundtrip timing test executed.")
231 | print("==========================================")
232 |
233 | sublime.message_dialog('Roundtrip Timing = '+(str(round(delT.total_seconds()*1000, 2)) + ' ms'))
234 |
235 |
236 | def m_pingPongTest(self, params):
237 |
238 |
239 | if not sublime:
240 | return
241 |
242 | global ping_pong_counter
243 | ping_pong_counter = ping_pong_counter - 1
244 |
245 |
246 | if ping_pong_counter == 0:
247 | delT = datetime.datetime.now() - start_time
248 | delT.total_seconds()
249 | print("Pingpong test executed.")
250 | print("==========================================")
251 |
252 | sublime.message_dialog('Pingpong Timing = '+(str(round(delT.total_seconds()*100, 2)) + ' ms'))
253 | return
254 |
255 | active_window = sublime.active_window()
256 |
257 | view = active_window.active_view()
258 |
259 | view.run_command("lsp_execute",
260 | {
261 | "session_name": "wolfram",
262 | "command_name": "ping_pong_responsiveness_test",
263 | "command_args":{}
264 | }
265 | )
266 |
267 | def m_payloadTest(self, params):
268 |
269 |
270 | if not sublime:
271 | return
272 |
273 |
274 | global ping_pong_counter
275 | ping_pong_counter = ping_pong_counter - 1
276 |
277 |
278 | if ping_pong_counter == 0:
279 | delT = datetime.datetime.now() - start_time
280 | delT.total_seconds()
281 |
282 | print("Payload timing test executed.")
283 | print("==========================================")
284 |
285 | sublime.message_dialog('Payload (2.6MB) Timing = '+(str(round(delT.total_seconds()/3, 2)) + ' sec'))
286 | return
287 |
288 | active_window = sublime.active_window()
289 |
290 | view = active_window.active_view()
291 |
292 | view.run_command("lsp_execute",
293 | {
294 | "session_name": "wolfram",
295 | "command_name": "payload_responsiveness_test",
296 | "command_args":{}
297 | }
298 | )
299 |
300 |
301 | def m_textDocument_publishImplicitTokens(self, params):
302 |
303 | #
304 | # Currently grabbing the active view
305 | # There is no current way to obtain the view that corresponds to the file
306 | # Related issues: https://github.com/sublimelsp/LSP/issues/641
307 | #
308 |
309 | if not sublime:
310 | return
311 |
312 | active_window = sublime.active_window()
313 |
314 | view = active_window.active_view()
315 |
316 | view.erase_phantoms("implicit_tokens")
317 |
318 | tokens = params["tokens"]
319 | for t in tokens:
320 | line = t["line"]
321 | column = t["column"]
322 | c = t["character"]
323 |
324 | #
325 | # FIXME: Use the same font as the editor
326 | # style = font-family: xxx;
327 | #
328 | content = '' + implicitTokenCharToText(c) + ''
329 |
330 | view.add_phantom("implicit_tokens",
331 | sublime.Region(view.text_point(line - 1, column - 1), view.text_point(line - 1, column - 1)),
332 | content,
333 | sublime.LAYOUT_INLINE)
334 |
335 |
336 | def m_textDocument_publishHTMLSnippet(self, params):
337 |
338 | #
339 | # Currently grabbing the active view
340 | # There is no current way to obtain the view that corresponds to the file
341 | # Related issues: https://github.com/sublimelsp/LSP/issues/641
342 | #
343 |
344 | if not sublime:
345 | return
346 |
347 | active_window = sublime.active_window()
348 |
349 | view = active_window.active_view()
350 |
351 | # view.erase_phantoms("html_snippet")
352 | mdpopups.erase_phantoms(view, "html_snippet")
353 | # view.hide_popup()
354 | # mdpopups.hide_popup(view)
355 |
356 | actions = params["actions"]
357 | for a in actions:
358 | href = a["href"]
359 | if href != "":
360 | self.hrefMap[href] = a
361 |
362 | lines = params["lines"]
363 |
364 | #
365 | # there may be multiple lines if in debug mode
366 | #
367 | for l in lines:
368 | line = l["line"]
369 | characterCount = l["characterCount"]
370 | content = l["content"]
371 |
372 | where = sublime.Region(view.text_point(line - 1, 1 - 1), view.text_point(line - 1, characterCount - 1))
373 |
374 | # view.add_phantom("html_snippet", where, content, sublime.LAYOUT_BELOW, self.on_html_snippet_navigate)
375 | mdpopups.add_phantom(view, "html_snippet", where, content, layout=sublime.LAYOUT_BELOW, on_navigate=self.on_html_snippet_navigate)
376 | # view.show_popup(content, location=view.text_point(line - 1, 1 - 1), on_navigate=self.on_html_snippet_navigate)
377 | # mdpopups.show_popup(view, content, location=view.text_point(line - 1, 1 - 1), on_navigate=self.on_html_snippet_navigate)
378 |
379 | def on_html_snippet_navigate(self, href):
380 |
381 | if href == "":
382 | return
383 |
384 | #
385 | # Currently grabbing the active view
386 | # There is no current way to obtain the view that corresponds to the file
387 | # Related issues: https://github.com/sublimelsp/LSP/issues/641
388 | #
389 |
390 | if not sublime:
391 | return
392 |
393 | active_window = sublime.active_window()
394 |
395 | view = active_window.active_view()
396 |
397 | # view.erase_phantoms("html_snippet")
398 | mdpopups.erase_phantoms(view, "html_snippet")
399 | # view.hide_popup()
400 | # mdpopups.hide_popup(view)
401 |
402 | action = self.hrefMap[href]
403 |
404 | command = action["command"]
405 |
406 | if command == "insert":
407 | view.run_command("click_insert", {"line": action["line"], "column": action["column"], "insertionText": action["insertionText"]})
408 | elif command == "delete":
409 | view.run_command("click_delete", {"line": action["line"], "column": action["column"], "deletionText": action["deletionText"]})
410 | else:
411 | raise ValueError("unrecognized command: " + command)
412 |
413 | del self.hrefMap[href]
414 |
415 |
416 | class ClickInsertCommand(sublime_plugin.TextCommand):
417 | def run(self, edit, line, column, insertionText):
418 | self.view.insert(edit, self.view.text_point(line - 1, column - 1), insertionText)
419 |
420 |
421 | class ClickDeleteCommand(sublime_plugin.TextCommand):
422 | def run(self, edit, line, column, deletionText):
423 | self.view.erase(edit, sublime.Region(self.view.text_point(line - 1, column - 1), self.view.text_point(line - 1, column + len(deletionText) - 1)))
424 |
425 |
426 | class WolframLanguageOpenSiteCommand(sublime_plugin.ApplicationCommand):
427 | """Open site links."""
428 |
429 | def run(self, url):
430 | """Open the URL."""
431 |
432 | webbrowser.open_new_tab(url)
433 |
434 | class RoundTripTimingCommand(sublime_plugin.ApplicationCommand):
435 | def run(self):
436 | global start_time
437 | start_time = datetime.datetime.now()
438 | print("Roundtrip timing test started ...")
439 | active_window = sublime.active_window()
440 | view = active_window.active_view()
441 |
442 | view.run_command("lsp_execute",
443 | {
444 | "session_name": "wolfram",
445 | "command_name": "roundtrip_responsiveness_test",
446 | "command_args":{}
447 | }
448 | )
449 |
450 |
451 | class PingPongCommand(sublime_plugin.ApplicationCommand):
452 | def run(self):
453 | global ping_pong_counter
454 | ping_pong_counter = 10
455 |
456 | global start_time
457 | start_time = datetime.datetime.now()
458 | print("Pingpong test started ...")
459 | active_window = sublime.active_window()
460 | view = active_window.active_view()
461 |
462 | view.run_command("lsp_execute",
463 | {
464 | "session_name": "wolfram",
465 | "command_name": "ping_pong_responsiveness_test",
466 | "command_args":{}
467 | }
468 | )
469 |
470 | class PayloadTimingCommand(sublime_plugin.ApplicationCommand):
471 | def run(self):
472 |
473 | global ping_pong_counter
474 | ping_pong_counter = 3
475 |
476 | global start_time
477 | start_time = datetime.datetime.now()
478 |
479 | print("Payload timing test started ...")
480 |
481 | active_window = sublime.active_window()
482 | view = active_window.active_view()
483 |
484 | view.run_command("lsp_execute",
485 | {
486 | "session_name": "wolfram",
487 | "command_name": "payload_responsiveness_test",
488 | "command_args":{}
489 | }
490 | )
491 |
492 | def implicitTokenCharToText(c):
493 | if c == "x":
494 | return "\xd7"
495 | if c == "z":
496 | return " \xd7"
497 | elif c == "N":
498 | # add a space before Null because it looks nicer
499 | return " Null"
500 | elif c == "1":
501 | return "1"
502 | elif c == "A":
503 | return "All"
504 | elif c == "e":
505 | # add space before and after \u25a1 because it looks nicer
506 | return " \u25a1 "
507 | elif c == "f":
508 | return "\u25a1\xd7"
509 | elif c == "y":
510 | return "\xd71"
511 | elif c == "B":
512 | return "All\xd7"
513 | elif c == "C":
514 | return "All\xd71"
515 | elif c == "D":
516 | return "All1"
517 | else:
518 | return " "
519 |
520 |
521 | def resolveKernel():
522 |
523 | if sys.platform == "linux":
524 | #
525 | # generally recommend Wolfram Engine before Mathematica
526 | # and newer versions over older versions
527 | # and recommend pre-13.0 Wolfram Engine last, because usage messages did not work before 13.0
528 | #
529 | possible_kernel_paths = [
530 | "/usr/local/Wolfram/Wolfram/14.2/Executables/WolframKernel",
531 | "/usr/local/Wolfram/WolframEngine/14.2/Executables/WolframKernel",
532 |
533 | "/usr/local/Wolfram/Wolfram/14.1/Executables/WolframKernel",
534 | "/usr/local/Wolfram/WolframEngine/14.1/Executables/WolframKernel",
535 |
536 | "/usr/local/Wolfram/Mathematica/14.0/Executables/WolframKernel",
537 | "/usr/local/Wolfram/WolframEngine/14.0/Executables/WolframKernel",
538 |
539 | "/usr/local/Wolfram/Mathematica/13.3/Executables/WolframKernel",
540 | "/usr/local/Wolfram/WolframEngine/13.3/Executables/WolframKernel",
541 |
542 | "/usr/local/Wolfram/Mathematica/13.2/Executables/WolframKernel",
543 | "/usr/local/Wolfram/WolframEngine/13.2/Executables/WolframKernel",
544 |
545 | "/usr/local/Wolfram/Mathematica/13.1/Executables/WolframKernel",
546 | "/usr/local/Wolfram/WolframEngine/13.1/Executables/WolframKernel",
547 |
548 | "/usr/local/Wolfram/Mathematica/13.0/Executables/WolframKernel",
549 | "/usr/local/Wolfram/WolframEngine/13.0/Executables/WolframKernel",
550 |
551 | "/usr/local/Wolfram/Mathematica/12.3/Executables/WolframKernel",
552 | "/usr/local/Wolfram/WolframEngine/12.3/Executables/WolframKernel",
553 |
554 | "/usr/local/Wolfram/Mathematica/12.2/Executables/WolframKernel",
555 | "/usr/local/Wolfram/WolframEngine/12.2/Executables/WolframKernel",
556 |
557 | "/usr/local/Wolfram/Mathematica/12.1/Executables/WolframKernel",
558 | "/usr/local/Wolfram/WolframEngine/12.1/Executables/WolframKernel"
559 | ]
560 | elif sys.platform == "darwin":
561 | #
562 | # generally recommend Wolfram Engine before Mathematica
563 | #
564 | # We do not know the version on Mac
565 | #
566 | possible_kernel_paths = [
567 | "/Applications/Wolfram.app/Contents/MacOS/WolframKernel",
568 | "/Applications/Mathematica.app/Contents/MacOS/WolframKernel",
569 | "'/Applications/Wolfram Engine.app/Contents/MacOS/WolframKernel'"
570 | ]
571 | elif sys.platform == "windows":
572 | #
573 | # generally recommend Wolfram Engine before Mathematica
574 | # and newer versions over older versions
575 | # and recommend pre-13.0 Wolfram Engine last, because usage messages did not work before 13.0
576 | #
577 | possible_kernel_paths = [
578 | "C:\\Program Files\\Wolfram Research\\Wolfram\\14.2\\WolframKernel.exe",
579 | "C:\\Program Files\\Wolfram Research\\Wolfram Engine\\14.2\\WolframKernel.exe",
580 |
581 | "C:\\Program Files\\Wolfram Research\\Wolfram\\14.1\\WolframKernel.exe",
582 | "C:\\Program Files\\Wolfram Research\\Wolfram Engine\\14.1\\WolframKernel.exe",
583 |
584 | "C:\\Program Files\\Wolfram Research\\Mathematica\\14.0\\WolframKernel.exe",
585 | "C:\\Program Files\\Wolfram Research\\Wolfram Engine\\14.0\\WolframKernel.exe",
586 |
587 | "C:\\Program Files\\Wolfram Research\\Mathematica\\13.3\\WolframKernel.exe",
588 | "C:\\Program Files\\Wolfram Research\\Wolfram Engine\\13.3\\WolframKernel.exe",
589 |
590 | "C:\\Program Files\\Wolfram Research\\Mathematica\\13.2\\WolframKernel.exe",
591 | "C:\\Program Files\\Wolfram Research\\Wolfram Engine\\13.2\\WolframKernel.exe",
592 |
593 | "C:\\Program Files\\Wolfram Research\\Mathematica\\13.1\\WolframKernel.exe",
594 | "C:\\Program Files\\Wolfram Research\\Wolfram Engine\\13.1\\WolframKernel.exe",
595 |
596 | "C:\\Program Files\\Wolfram Research\\Mathematica\\13.0\\WolframKernel.exe",
597 | "C:\\Program Files\\Wolfram Research\\Wolfram Engine\\13.0\\WolframKernel.exe",
598 |
599 | "C:\\Program Files\\Wolfram Research\\Mathematica\\12.3\\WolframKernel.exe",
600 | "C:\\Program Files\\Wolfram Research\\Wolfram Engine\\12.3\\WolframKernel.exe",
601 |
602 | "C:\\Program Files\\Wolfram Research\\Mathematica\\12.2\\WolframKernel.exe",
603 | "C:\\Program Files\\Wolfram Research\\Wolfram Engine\\12.2\\WolframKernel.exe",
604 |
605 | "C:\\Program Files\\Wolfram Research\\Mathematica\\12.1\\WolframKernel.exe",
606 | "C:\\Program Files\\Wolfram Research\\Wolfram Engine\\12.1\\WolframKernel.exe"
607 | ]
608 |
609 | #
610 | # need to return SOMETHING to show in error messages, so use possible_kernel_paths[0] as default
611 | #
612 | return next((k for k in possible_kernel_paths if os.path.isfile(k)), possible_kernel_paths[0])
613 |
614 | class SideBarEditorOpenCommand(sublime_plugin.WindowCommand):
615 |
616 | def run(self, paths = []):
617 | for path in paths:
618 | open_file(path)
619 |
620 | def is_enabled(self, paths = []):
621 | for path in paths:
622 | if not path.endswith((".nb", ".cdf", ".wl", ".m", ".wls")):
623 | return False
624 |
625 | return True
626 |
627 | class ContextEditorOpenCommand(sublime_plugin.TextCommand):
628 |
629 | def run(self, edit):
630 | name = self.view.file_name()
631 | open_file(name)
632 |
633 | def is_enabled(self):
634 | name = self.view.file_name()
635 | if name == None:
636 | return False
637 | if name.endswith((".nb", ".cdf", ".wl", ".m", ".wls")):
638 | return True
639 | return False
640 |
641 |
642 | def open_file(filepath):
643 | if sublime.platform() == "osx":
644 | subprocess.Popen(("open", filepath))
645 | elif sublime.platform() == "windows":
646 | os.startfile(filepath)
647 | elif sublime.platform() == "linux":
648 | subprocess.Popen(("xdg-open", filepath))
649 |
650 |
651 | def plugin_loaded():
652 | register_plugin(LspWolframLanguagePlugin)
653 |
654 |
655 | def plugin_unloaded():
656 | unregister_plugin(LspWolframLanguagePlugin)
657 |
658 |
659 |
660 |
661 |
--------------------------------------------------------------------------------
/WolframLanguage.sublime-completions:
--------------------------------------------------------------------------------
1 | {
2 | "scope": "source.wolfram",
3 | "completions": [
4 | "AASTriangle",
5 | "AbelianGroup",
6 | "Abort",
7 | "AbortKernels",
8 | "AbortProtect",
9 | "Above",
10 | "Abs",
11 | "AbsArg",
12 | "AbsArgPlot",
13 | "AbsoluteCorrelation",
14 | "AbsoluteCorrelationFunction",
15 | "AbsoluteCurrentValue",
16 | "AbsoluteDashing",
17 | "AbsoluteFileName",
18 | "AbsoluteOptions",
19 | "AbsolutePointSize",
20 | "AbsoluteThickness",
21 | "AbsoluteTime",
22 | "AbsoluteTiming",
23 | "AcceptanceThreshold",
24 | "AccountingForm",
25 | "Accumulate",
26 | "Accuracy",
27 | "AccuracyGoal",
28 | "AcousticAbsorbingValue",
29 | "AcousticImpedanceValue",
30 | "AcousticNormalVelocityValue",
31 | "AcousticPDEComponent",
32 | "AcousticPressureCondition",
33 | "AcousticRadiationValue",
34 | "AcousticSoundHardValue",
35 | "AcousticSoundSoftCondition",
36 | "ActionMenu",
37 | "Activate",
38 | "ActiveStyle",
39 | "AcyclicGraphQ",
40 | "AddOnHelpPath",
41 | "AddSides",
42 | "AddTo",
43 | "AddUsers",
44 | "AdjacencyGraph",
45 | "AdjacencyList",
46 | "AdjacencyMatrix",
47 | "AdjacentMeshCells",
48 | "Adjugate",
49 | "AdjustmentBox",
50 | "AdjustmentBoxOptions",
51 | "AdjustTimeSeriesForecast",
52 | "AdministrativeDivisionData",
53 | "AffineHalfSpace",
54 | "AffineSpace",
55 | "AffineStateSpaceModel",
56 | "AffineTransform",
57 | "After",
58 | "AircraftData",
59 | "AirportData",
60 | "AirPressureData",
61 | "AirSoundAttenuation",
62 | "AirTemperatureData",
63 | "AiryAi",
64 | "AiryAiPrime",
65 | "AiryAiZero",
66 | "AiryBi",
67 | "AiryBiPrime",
68 | "AiryBiZero",
69 | "AlgebraicIntegerQ",
70 | "AlgebraicNumber",
71 | "AlgebraicNumberDenominator",
72 | "AlgebraicNumberNorm",
73 | "AlgebraicNumberPolynomial",
74 | "AlgebraicNumberTrace",
75 | "Algebraics",
76 | "AlgebraicUnitQ",
77 | "Alignment",
78 | "AlignmentPoint",
79 | "All",
80 | "AllowedCloudExtraParameters",
81 | "AllowedCloudParameterExtensions",
82 | "AllowedDimensions",
83 | "AllowedFrequencyRange",
84 | "AllowedHeads",
85 | "AllowGroupClose",
86 | "AllowInlineCells",
87 | "AllowLooseGrammar",
88 | "AllowReverseGroupClose",
89 | "AllowScriptLevelChange",
90 | "AllowVersionUpdate",
91 | "AllTrue",
92 | "Alphabet",
93 | "AlphabeticOrder",
94 | "AlphabeticSort",
95 | "AlphaChannel",
96 | "AlternatingFactorial",
97 | "AlternatingGroup",
98 | "AlternativeHypothesis",
99 | "Alternatives",
100 | "AltitudeMethod",
101 | "AmbientLight",
102 | "AmbiguityFunction",
103 | "AmbiguityList",
104 | "AnatomyData",
105 | "AnatomyPlot3D",
106 | "AnatomySkinStyle",
107 | "AnatomyStyling",
108 | "AnchoredSearch",
109 | "And",
110 | "AndersonDarlingTest",
111 | "AngerJ",
112 | "AngleBracket",
113 | "AnglePath",
114 | "AnglePath3D",
115 | "AngleVector",
116 | "AngularGauge",
117 | "Animate",
118 | "AnimationDirection",
119 | "AnimationRate",
120 | "AnimationRepetitions",
121 | "AnimationRunning",
122 | "AnimationRunTime",
123 | "AnimationTimeIndex",
124 | "Animator",
125 | "Annotate",
126 | "Annotation",
127 | "AnnotationDelete",
128 | "AnnotationKeys",
129 | "AnnotationRules",
130 | "AnnotationValue",
131 | "Annuity",
132 | "AnnuityDue",
133 | "Annulus",
134 | "AnomalyDetection",
135 | "AnomalyDetectorFunction",
136 | "Anonymous",
137 | "Antialiasing",
138 | "Antihermitian",
139 | "AntihermitianMatrixQ",
140 | "Antisymmetric",
141 | "AntisymmetricMatrixQ",
142 | "Antonyms",
143 | "AnyOrder",
144 | "AnySubset",
145 | "AnyTrue",
146 | "Apart",
147 | "ApartSquareFree",
148 | "APIFunction",
149 | "Appearance",
150 | "AppearanceElements",
151 | "AppearanceRules",
152 | "AppellF1",
153 | "Append",
154 | "AppendTo",
155 | "Apply",
156 | "ApplySides",
157 | "ApplyTo",
158 | "ArcCos",
159 | "ArcCosh",
160 | "ArcCot",
161 | "ArcCoth",
162 | "ArcCsc",
163 | "ArcCsch",
164 | "ArcCurvature",
165 | "ARCHProcess",
166 | "ArcLength",
167 | "ArcSec",
168 | "ArcSech",
169 | "ArcSin",
170 | "ArcSinDistribution",
171 | "ArcSinh",
172 | "ArcTan",
173 | "ArcTanh",
174 | "Area",
175 | "Arg",
176 | "ArgMax",
177 | "ArgMin",
178 | "ArgumentsOptions",
179 | "ARIMAProcess",
180 | "ArithmeticGeometricMean",
181 | "ARMAProcess",
182 | "ARProcess",
183 | "Array",
184 | "ArrayComponents",
185 | "ArrayDepth",
186 | "ArrayFilter",
187 | "ArrayFlatten",
188 | "ArrayMesh",
189 | "ArrayPad",
190 | "ArrayPlot",
191 | "ArrayPlot3D",
192 | "ArrayQ",
193 | "ArrayResample",
194 | "ArrayReshape",
195 | "ArrayRules",
196 | "Arrays",
197 | "Arrow",
198 | "Arrowheads",
199 | "ASATriangle",
200 | "AspectRatio",
201 | "Assert",
202 | "AssociateTo",
203 | "Association",
204 | "AssociationFormat",
205 | "AssociationMap",
206 | "AssociationQ",
207 | "AssociationThread",
208 | "Assuming",
209 | "Assumptions",
210 | "Asymptotic",
211 | "AsymptoticDSolveValue",
212 | "AsymptoticEqual",
213 | "AsymptoticEquivalent",
214 | "AsymptoticExpectation",
215 | "AsymptoticGreater",
216 | "AsymptoticGreaterEqual",
217 | "AsymptoticIntegrate",
218 | "AsymptoticLess",
219 | "AsymptoticLessEqual",
220 | "AsymptoticOutputTracker",
221 | "AsymptoticProbability",
222 | "AsymptoticProduct",
223 | "AsymptoticRSolveValue",
224 | "AsymptoticSolve",
225 | "AsymptoticSum",
226 | "Asynchronous",
227 | "AtomQ",
228 | "AttachedCell",
229 | "Attributes",
230 | "Audio",
231 | "AudioAmplify",
232 | "AudioBlockMap",
233 | "AudioCapture",
234 | "AudioChannelAssignment",
235 | "AudioChannelCombine",
236 | "AudioChannelMix",
237 | "AudioChannels",
238 | "AudioChannelSeparate",
239 | "AudioData",
240 | "AudioDelay",
241 | "AudioDelete",
242 | "AudioDistance",
243 | "AudioEncoding",
244 | "AudioFade",
245 | "AudioFrequencyShift",
246 | "AudioGenerator",
247 | "AudioInputDevice",
248 | "AudioInsert",
249 | "AudioIntervals",
250 | "AudioJoin",
251 | "AudioLabel",
252 | "AudioLength",
253 | "AudioLocalMeasurements",
254 | "AudioLoudness",
255 | "AudioMeasurements",
256 | "AudioNormalize",
257 | "AudioOutputDevice",
258 | "AudioOverlay",
259 | "AudioPad",
260 | "AudioPan",
261 | "AudioPartition",
262 | "AudioPitchShift",
263 | "AudioPlot",
264 | "AudioQ",
265 | "AudioReplace",
266 | "AudioResample",
267 | "AudioReverb",
268 | "AudioReverse",
269 | "AudioSampleRate",
270 | "AudioSpectralMap",
271 | "AudioSpectralTransformation",
272 | "AudioSplit",
273 | "AudioTimeStretch",
274 | "AudioTrim",
275 | "AudioType",
276 | "AugmentedPolyhedron",
277 | "AugmentedSymmetricPolynomial",
278 | "Authentication",
279 | "AuthenticationDialog",
280 | "AutoAction",
281 | "AutoCopy",
282 | "AutocorrelationTest",
283 | "AutoDelete",
284 | "AutoGeneratedPackage",
285 | "AutoIndent",
286 | "AutoItalicWords",
287 | "AutoloadPath",
288 | "Automatic",
289 | "AutoMultiplicationSymbol",
290 | "AutoOpenNotebooks",
291 | "AutoOpenPalettes",
292 | "AutoOperatorRenderings",
293 | "AutoRefreshed",
294 | "AutoRemove",
295 | "AutorunSequencing",
296 | "AutoScroll",
297 | "AutoSpacing",
298 | "AutoSubmitting",
299 | "Axes",
300 | "AxesEdge",
301 | "AxesLabel",
302 | "AxesOrigin",
303 | "AxesStyle",
304 | "Axis",
305 | "BabyMonsterGroupB",
306 | "Back",
307 | "Background",
308 | "Backslash",
309 | "Backward",
310 | "Ball",
311 | "Band",
312 | "BandpassFilter",
313 | "BandstopFilter",
314 | "BarabasiAlbertGraphDistribution",
315 | "BarChart",
316 | "BarChart3D",
317 | "BarcodeImage",
318 | "BarcodeRecognize",
319 | "BaringhausHenzeTest",
320 | "BarLegend",
321 | "BarlowProschanImportance",
322 | "BarnesG",
323 | "BarOrigin",
324 | "BarSpacing",
325 | "BartlettHannWindow",
326 | "BartlettWindow",
327 | "BaseDecode",
328 | "BaseEncode",
329 | "BaseForm",
330 | "Baseline",
331 | "BaselinePosition",
332 | "BaseStyle",
333 | "BatesDistribution",
334 | "BattleLemarieWavelet",
335 | "Because",
336 | "BeckmannDistribution",
337 | "Beep",
338 | "Before",
339 | "Begin",
340 | "BeginDialogPacket",
341 | "BeginPackage",
342 | "BellB",
343 | "BellY",
344 | "Below",
345 | "BenfordDistribution",
346 | "BeniniDistribution",
347 | "BenktanderGibratDistribution",
348 | "BenktanderWeibullDistribution",
349 | "BernoulliB",
350 | "BernoulliDistribution",
351 | "BernoulliGraphDistribution",
352 | "BernoulliProcess",
353 | "BernsteinBasis",
354 | "BesselFilterModel",
355 | "BesselI",
356 | "BesselJ",
357 | "BesselJZero",
358 | "BesselK",
359 | "BesselY",
360 | "BesselYZero",
361 | "Beta",
362 | "BetaBinomialDistribution",
363 | "BetaDistribution",
364 | "BetaNegativeBinomialDistribution",
365 | "BetaPrimeDistribution",
366 | "BetaRegularized",
367 | "Between",
368 | "BetweennessCentrality",
369 | "BeveledPolyhedron",
370 | "BezierCurve",
371 | "BezierFunction",
372 | "BilateralFilter",
373 | "BilateralLaplaceTransform",
374 | "BilateralZTransform",
375 | "Binarize",
376 | "BinaryDeserialize",
377 | "BinaryDistance",
378 | "BinaryFormat",
379 | "BinaryImageQ",
380 | "BinaryRead",
381 | "BinaryReadList",
382 | "BinarySerialize",
383 | "BinaryWrite",
384 | "BinCounts",
385 | "BinLists",
386 | "Binomial",
387 | "BinomialDistribution",
388 | "BinomialProcess",
389 | "BinormalDistribution",
390 | "BiorthogonalSplineWavelet",
391 | "BipartiteGraphQ",
392 | "BiquadraticFilterModel",
393 | "BirnbaumImportance",
394 | "BirnbaumSaundersDistribution",
395 | "BitAnd",
396 | "BitClear",
397 | "BitGet",
398 | "BitLength",
399 | "BitNot",
400 | "BitOr",
401 | "BitSet",
402 | "BitShiftLeft",
403 | "BitShiftRight",
404 | "BitXor",
405 | "BiweightLocation",
406 | "BiweightMidvariance",
407 | "Black",
408 | "BlackmanHarrisWindow",
409 | "BlackmanNuttallWindow",
410 | "BlackmanWindow",
411 | "Blank",
412 | "BlankNullSequence",
413 | "BlankSequence",
414 | "Blend",
415 | "Block",
416 | "BlockMap",
417 | "BlockRandom",
418 | "BlomqvistBeta",
419 | "BlomqvistBetaTest",
420 | "Blue",
421 | "Blur",
422 | "Blurring",
423 | "BodePlot",
424 | "BohmanWindow",
425 | "Bold",
426 | "Bookmarks",
427 | "Boole",
428 | "BooleanConsecutiveFunction",
429 | "BooleanConvert",
430 | "BooleanCountingFunction",
431 | "BooleanFunction",
432 | "BooleanGraph",
433 | "BooleanMaxterms",
434 | "BooleanMinimize",
435 | "BooleanMinterms",
436 | "BooleanQ",
437 | "BooleanRegion",
438 | "Booleans",
439 | "BooleanStrings",
440 | "BooleanTable",
441 | "BooleanVariables",
442 | "BorderDimensions",
443 | "BorelTannerDistribution",
444 | "Bottom",
445 | "BottomHatTransform",
446 | "BoundaryDiscretizeGraphics",
447 | "BoundaryDiscretizeRegion",
448 | "BoundaryMesh",
449 | "BoundaryMeshRegion",
450 | "BoundaryMeshRegionQ",
451 | "BoundaryStyle",
452 | "BoundedRegionQ",
453 | "BoundingRegion",
454 | "BoxBaselineShift",
455 | "BoxData",
456 | "Boxed",
457 | "Boxes",
458 | "BoxFormFormatTypes",
459 | "BoxFrame",
460 | "BoxMargins",
461 | "BoxMatrix",
462 | "BoxObject",
463 | "BoxRatios",
464 | "BoxStyle",
465 | "BoxWhiskerChart",
466 | "BracketingBar",
467 | "BrayCurtisDistance",
468 | "BreadthFirstScan",
469 | "Break",
470 | "BridgeData",
471 | "BrightnessEqualize",
472 | "BroadcastStationData",
473 | "Brown",
474 | "BrownForsytheTest",
475 | "BrownianBridgeProcess",
476 | "BSplineBasis",
477 | "BSplineCurve",
478 | "BSplineFunction",
479 | "BSplineSurface",
480 | "BubbleChart",
481 | "BubbleChart3D",
482 | "BubbleScale",
483 | "BubbleSizes",
484 | "BuckyballGraph",
485 | "BuildingData",
486 | "BulletGauge",
487 | "BusinessDayQ",
488 | "ButterflyGraph",
489 | "ButterworthFilterModel",
490 | "Button",
491 | "ButtonBar",
492 | "ButtonBox",
493 | "ButtonBoxOptions",
494 | "ButtonData",
495 | "ButtonFunction",
496 | "ButtonMinHeight",
497 | "ButtonNotebook",
498 | "ButtonSource",
499 | "Byte",
500 | "ByteArray",
501 | "ByteArrayFormat",
502 | "ByteArrayFormatQ",
503 | "ByteArrayQ",
504 | "ByteArrayToString",
505 | "ByteCount",
506 | "ByteOrdering",
507 | "C",
508 | "CalendarConvert",
509 | "CalendarData",
510 | "CalendarType",
511 | "Callout",
512 | "CalloutMarker",
513 | "CalloutStyle",
514 | "CallPacket",
515 | "CanberraDistance",
516 | "Cancel",
517 | "CancelButton",
518 | "CandlestickChart",
519 | "CanonicalGraph",
520 | "CanonicalizePolygon",
521 | "CanonicalizePolyhedron",
522 | "CanonicalizeRegion",
523 | "CanonicalName",
524 | "CanonicalWarpingCorrespondence",
525 | "CanonicalWarpingDistance",
526 | "CantorMesh",
527 | "CantorStaircase",
528 | "Cap",
529 | "CapForm",
530 | "CapitalDifferentialD",
531 | "Capitalize",
532 | "CapsuleShape",
533 | "CaptureRunning",
534 | "CaputoD",
535 | "CarlemanLinearize",
536 | "CarlsonRC",
537 | "CarlsonRD",
538 | "CarlsonRE",
539 | "CarlsonRF",
540 | "CarlsonRG",
541 | "CarlsonRJ",
542 | "CarlsonRK",
543 | "CarlsonRM",
544 | "CarmichaelLambda",
545 | "CaseOrdering",
546 | "Cases",
547 | "CaseSensitive",
548 | "Cashflow",
549 | "Casoratian",
550 | "Catalan",
551 | "CatalanNumber",
552 | "Catch",
553 | "Catenate",
554 | "CauchyDistribution",
555 | "CauchyMatrix",
556 | "CauchyWindow",
557 | "CayleyGraph",
558 | "CDF",
559 | "CDFDeploy",
560 | "CDFWavelet",
561 | "Ceiling",
562 | "CelestialSystem",
563 | "Cell",
564 | "CellAutoOverwrite",
565 | "CellBaseline",
566 | "CellBracketOptions",
567 | "CellChangeTimes",
568 | "CellContext",
569 | "CellDingbat",
570 | "CellDingbatMargin",
571 | "CellDynamicExpression",
572 | "CellEditDuplicate",
573 | "CellEpilog",
574 | "CellEvaluationDuplicate",
575 | "CellEvaluationFunction",
576 | "CellEventActions",
577 | "CellFrame",
578 | "CellFrameColor",
579 | "CellFrameLabelMargins",
580 | "CellFrameLabels",
581 | "CellFrameMargins",
582 | "CellGroup",
583 | "CellGroupData",
584 | "CellGrouping",
585 | "CellGroupingRules",
586 | "CellHorizontalScrolling",
587 | "CellID",
588 | "CellLabel",
589 | "CellLabelAutoDelete",
590 | "CellLabelMargins",
591 | "CellLabelPositioning",
592 | "CellLabelStyle",
593 | "CellLabelTemplate",
594 | "CellMargins",
595 | "CellObject",
596 | "CellOpen",
597 | "CellPrint",
598 | "CellProlog",
599 | "Cells",
600 | "CellSize",
601 | "CellStyle",
602 | "CellTags",
603 | "CellularAutomaton",
604 | "CensoredDistribution",
605 | "Censoring",
606 | "Center",
607 | "CenterArray",
608 | "CenterDot",
609 | "CenteredInterval",
610 | "CentralFeature",
611 | "CentralMoment",
612 | "CentralMomentGeneratingFunction",
613 | "Cepstrogram",
614 | "CepstrogramArray",
615 | "CepstrumArray",
616 | "CForm",
617 | "ChampernowneNumber",
618 | "ChanVeseBinarize",
619 | "Character",
620 | "CharacterCounts",
621 | "CharacterEncoding",
622 | "CharacterEncodingsPath",
623 | "CharacteristicFunction",
624 | "CharacteristicPolynomial",
625 | "CharacterName",
626 | "CharacterRange",
627 | "Characters",
628 | "ChartBaseStyle",
629 | "ChartElementFunction",
630 | "ChartElements",
631 | "ChartLabels",
632 | "ChartLayout",
633 | "ChartLegends",
634 | "ChartStyle",
635 | "Chebyshev1FilterModel",
636 | "Chebyshev2FilterModel",
637 | "ChebyshevT",
638 | "ChebyshevU",
639 | "Check",
640 | "CheckAbort",
641 | "CheckArguments",
642 | "Checkbox",
643 | "CheckboxBar",
644 | "ChemicalData",
645 | "ChessboardDistance",
646 | "ChiDistribution",
647 | "ChineseRemainder",
648 | "ChiSquareDistribution",
649 | "ChoiceButtons",
650 | "ChoiceDialog",
651 | "CholeskyDecomposition",
652 | "Chop",
653 | "ChromaticityPlot",
654 | "ChromaticityPlot3D",
655 | "ChromaticPolynomial",
656 | "Circle",
657 | "CircleDot",
658 | "CircleMinus",
659 | "CirclePlus",
660 | "CirclePoints",
661 | "CircleThrough",
662 | "CircleTimes",
663 | "CirculantGraph",
664 | "CircularArcThrough",
665 | "CircularOrthogonalMatrixDistribution",
666 | "CircularQuaternionMatrixDistribution",
667 | "CircularRealMatrixDistribution",
668 | "CircularSymplecticMatrixDistribution",
669 | "CircularUnitaryMatrixDistribution",
670 | "Circumsphere",
671 | "CityData",
672 | "ClassifierFunction",
673 | "ClassifierMeasurements",
674 | "ClassifierMeasurementsObject",
675 | "Classify",
676 | "ClassPriors",
677 | "Clear",
678 | "ClearAll",
679 | "ClearAttributes",
680 | "ClearCookies",
681 | "ClearPermissions",
682 | "ClearSystemCache",
683 | "ClebschGordan",
684 | "ClickPane",
685 | "ClickToCopy",
686 | "ClickToCopyEnabled",
687 | "Clip",
688 | "ClippingStyle",
689 | "ClipPlanes",
690 | "ClipPlanesStyle",
691 | "ClipRange",
692 | "Clock",
693 | "ClockGauge",
694 | "Close",
695 | "CloseKernels",
696 | "ClosenessCentrality",
697 | "Closing",
698 | "ClosingAutoSave",
699 | "CloudAccountData",
700 | "CloudBase",
701 | "CloudConnect",
702 | "CloudDeploy",
703 | "CloudDirectory",
704 | "CloudDisconnect",
705 | "CloudEvaluate",
706 | "CloudExport",
707 | "CloudFunction",
708 | "CloudGet",
709 | "CloudImport",
710 | "CloudLoggingData",
711 | "CloudObject",
712 | "CloudObjectNameFormat",
713 | "CloudObjects",
714 | "CloudObjectURLType",
715 | "CloudPublish",
716 | "CloudPut",
717 | "CloudSave",
718 | "CloudShare",
719 | "CloudSubmit",
720 | "CloudSymbol",
721 | "CloudUnshare",
722 | "ClusterClassify",
723 | "ClusterDissimilarityFunction",
724 | "ClusteringComponents",
725 | "ClusteringMeasurements",
726 | "ClusteringTree",
727 | "CMYKColor",
728 | "CodeAssistOptions",
729 | "Coefficient",
730 | "CoefficientArrays",
731 | "CoefficientList",
732 | "CoefficientRules",
733 | "CoifletWavelet",
734 | "Collect",
735 | "CollinearPoints",
736 | "Colon",
737 | "ColorBalance",
738 | "ColorCombine",
739 | "ColorConvert",
740 | "ColorCoverage",
741 | "ColorData",
742 | "ColorDataFunction",
743 | "ColorDetect",
744 | "ColorDistance",
745 | "ColorFunction",
746 | "ColorFunctionBinning",
747 | "ColorFunctionScaling",
748 | "Colorize",
749 | "ColorNegate",
750 | "ColorProfileData",
751 | "ColorQ",
752 | "ColorQuantize",
753 | "ColorReplace",
754 | "ColorRules",
755 | "ColorSelectorSettings",
756 | "ColorSeparate",
757 | "ColorSetter",
758 | "ColorSlider",
759 | "ColorsNear",
760 | "ColorSpace",
761 | "ColorToneMapping",
762 | "Column",
763 | "ColumnAlignments",
764 | "ColumnLines",
765 | "ColumnsEqual",
766 | "ColumnSpacings",
767 | "ColumnWidths",
768 | "CombinerFunction",
769 | "CometData",
770 | "CommonDefaultFormatTypes",
771 | "Commonest",
772 | "CommonestFilter",
773 | "CommonName",
774 | "CommonUnits",
775 | "CommunityBoundaryStyle",
776 | "CommunityGraphPlot",
777 | "CommunityLabels",
778 | "CommunityRegionStyle",
779 | "CompanyData",
780 | "CompatibleUnitQ",
781 | "CompilationOptions",
782 | "CompilationTarget",
783 | "Compile",
784 | "Compiled",
785 | "CompiledFunction",
786 | "Complement",
787 | "CompleteGraph",
788 | "CompleteGraphQ",
789 | "CompleteIntegral",
790 | "CompleteKaryTree",
791 | "Complex",
792 | "ComplexArrayPlot",
793 | "ComplexContourPlot",
794 | "Complexes",
795 | "ComplexExpand",
796 | "ComplexInfinity",
797 | "ComplexityFunction",
798 | "ComplexListPlot",
799 | "ComplexPlot",
800 | "ComplexPlot3D",
801 | "ComplexRegionPlot",
802 | "ComplexStreamPlot",
803 | "ComplexVectorPlot",
804 | "ComponentMeasurements",
805 | "ComposeList",
806 | "ComposeSeries",
807 | "CompositeQ",
808 | "Composition",
809 | "CompoundElement",
810 | "CompoundExpression",
811 | "CompoundPoissonDistribution",
812 | "CompoundPoissonProcess",
813 | "CompoundRenewalProcess",
814 | "Compress",
815 | "CompressionLevel",
816 | "ConcaveHullMesh",
817 | "Condition",
818 | "ConditionalExpression",
819 | "Conditioned",
820 | "Cone",
821 | "ConfidenceLevel",
822 | "ConfidenceRange",
823 | "ConfidenceTransform",
824 | "ConfigurationPath",
825 | "Confirm",
826 | "ConfirmAssert",
827 | "ConfirmBy",
828 | "ConfirmMatch",
829 | "ConformAudio",
830 | "ConformImages",
831 | "Congruent",
832 | "ConicGradientFilling",
833 | "ConicHullRegion",
834 | "ConicOptimization",
835 | "Conjugate",
836 | "ConjugateTranspose",
837 | "Conjunction",
838 | "ConnectedComponents",
839 | "ConnectedGraphComponents",
840 | "ConnectedGraphQ",
841 | "ConnectedMeshComponents",
842 | "ConnectLibraryCallbackFunction",
843 | "ConnesWindow",
844 | "ConoverTest",
845 | "ConservativeConvectionPDETerm",
846 | "Constant",
847 | "ConstantArray",
848 | "ConstantImage",
849 | "ConstantRegionQ",
850 | "Constants",
851 | "ConstellationData",
852 | "Construct",
853 | "ContainsAll",
854 | "ContainsAny",
855 | "ContainsExactly",
856 | "ContainsNone",
857 | "ContainsOnly",
858 | "ContentPadding",
859 | "ContentSelectable",
860 | "ContentSize",
861 | "Context",
862 | "Contexts",
863 | "ContextToFileName",
864 | "Continue",
865 | "ContinuedFraction",
866 | "ContinuedFractionK",
867 | "ContinuousAction",
868 | "ContinuousMarkovProcess",
869 | "ContinuousTask",
870 | "ContinuousTimeModelQ",
871 | "ContinuousWaveletData",
872 | "ContinuousWaveletTransform",
873 | "ContourDetect",
874 | "ContourLabels",
875 | "ContourPlot",
876 | "ContourPlot3D",
877 | "Contours",
878 | "ContourShading",
879 | "ContourStyle",
880 | "ContraharmonicMean",
881 | "Control",
882 | "ControlActive",
883 | "ControllabilityGramian",
884 | "ControllabilityMatrix",
885 | "ControllableDecomposition",
886 | "ControllableModelQ",
887 | "ControllerInformation",
888 | "ControllerLinking",
889 | "ControllerManipulate",
890 | "ControllerMethod",
891 | "ControllerPath",
892 | "ControllerState",
893 | "ControlPlacement",
894 | "ControlsRendering",
895 | "ControlType",
896 | "ConvectionPDETerm",
897 | "Convergents",
898 | "ConversionRules",
899 | "ConvexHullMesh",
900 | "ConvexHullRegion",
901 | "ConvexOptimization",
902 | "ConvexPolygonQ",
903 | "ConvexPolyhedronQ",
904 | "ConvexRegionQ",
905 | "Convolve",
906 | "ConwayGroupCo1",
907 | "ConwayGroupCo2",
908 | "ConwayGroupCo3",
909 | "CookieFunction",
910 | "CoordinateBoundingBox",
911 | "CoordinateBoundingBoxArray",
912 | "CoordinateBounds",
913 | "CoordinateBoundsArray",
914 | "CoordinateChartData",
915 | "CoordinatesToolOptions",
916 | "CoordinateTransform",
917 | "CoordinateTransformData",
918 | "CoplanarPoints",
919 | "CoprimeQ",
920 | "Coproduct",
921 | "CopulaDistribution",
922 | "Copyable",
923 | "CopyDatabin",
924 | "CopyDirectory",
925 | "CopyFile",
926 | "CopyFunction",
927 | "CopyToClipboard",
928 | "CoreNilpotentDecomposition",
929 | "CornerFilter",
930 | "CornerNeighbors",
931 | "Correlation",
932 | "CorrelationDistance",
933 | "CorrelationFunction",
934 | "CorrelationTest",
935 | "Cos",
936 | "Cosh",
937 | "CoshIntegral",
938 | "CosineDistance",
939 | "CosineWindow",
940 | "CosIntegral",
941 | "Cot",
942 | "Coth",
943 | "CoulombF",
944 | "CoulombG",
945 | "CoulombH1",
946 | "CoulombH2",
947 | "Count",
948 | "CountDistinct",
949 | "CountDistinctBy",
950 | "CounterAssignments",
951 | "CounterFunction",
952 | "CounterIncrements",
953 | "CounterStyleMenuListing",
954 | "CountRoots",
955 | "CountryData",
956 | "Counts",
957 | "CountsBy",
958 | "Covariance",
959 | "CovarianceEstimatorFunction",
960 | "CovarianceFunction",
961 | "CoxianDistribution",
962 | "CoxIngersollRossProcess",
963 | "CoxModel",
964 | "CoxModelFit",
965 | "CramerVonMisesTest",
966 | "CreateArchive",
967 | "CreateCellID",
968 | "CreateDatabin",
969 | "CreateDialog",
970 | "CreateDirectory",
971 | "CreateDocument",
972 | "CreateFile",
973 | "CreateIntermediateDirectories",
974 | "CreateManagedLibraryExpression",
975 | "CreateNotebook",
976 | "CreatePacletArchive",
977 | "CreatePalette",
978 | "CreatePermissionsGroup",
979 | "CreateUUID",
980 | "CreateWindow",
981 | "CriterionFunction",
982 | "CriticalityFailureImportance",
983 | "CriticalitySuccessImportance",
984 | "CriticalSection",
985 | "Cross",
986 | "CrossingCount",
987 | "CrossingDetect",
988 | "CrossingPolygon",
989 | "CrossMatrix",
990 | "Csc",
991 | "Csch",
992 | "CSGRegion",
993 | "CSGRegionQ",
994 | "CSGRegionTree",
995 | "Cube",
996 | "CubeRoot",
997 | "Cubics",
998 | "Cuboid",
999 | "Cumulant",
1000 | "CumulantGeneratingFunction",
1001 | "CumulativeFeatureImpactPlot",
1002 | "Cup",
1003 | "CupCap",
1004 | "Curl",
1005 | "CurrencyConvert",
1006 | "CurrentDate",
1007 | "CurrentImage",
1008 | "CurrentValue",
1009 | "CurvatureFlowFilter",
1010 | "CurveClosed",
1011 | "Cyan",
1012 | "CycleGraph",
1013 | "CycleIndexPolynomial",
1014 | "Cycles",
1015 | "CyclicGroup",
1016 | "Cyclotomic",
1017 | "Cylinder",
1018 | "CylindricalDecomposition",
1019 | "CylindricalDecompositionFunction",
1020 | "D",
1021 | "DagumDistribution",
1022 | "DamData",
1023 | "DamerauLevenshteinDistance",
1024 | "Darker",
1025 | "Dashed",
1026 | "Dashing",
1027 | "Databin",
1028 | "DatabinAdd",
1029 | "Databins",
1030 | "DatabinUpload",
1031 | "DataDistribution",
1032 | "DataRange",
1033 | "DataReversed",
1034 | "Dataset",
1035 | "DatasetTheme",
1036 | "DateBounds",
1037 | "Dated",
1038 | "DateDifference",
1039 | "DatedUnit",
1040 | "DateFormat",
1041 | "DateFunction",
1042 | "DateGranularity",
1043 | "DateHistogram",
1044 | "DateList",
1045 | "DateListLogPlot",
1046 | "DateListPlot",
1047 | "DateListStepPlot",
1048 | "DateObject",
1049 | "DateObjectQ",
1050 | "DateOverlapsQ",
1051 | "DatePattern",
1052 | "DatePlus",
1053 | "DateRange",
1054 | "DateReduction",
1055 | "DateScale",
1056 | "DateSelect",
1057 | "DateString",
1058 | "DateTicksFormat",
1059 | "DateValue",
1060 | "DateWithinQ",
1061 | "DaubechiesWavelet",
1062 | "DavisDistribution",
1063 | "DawsonF",
1064 | "DayCount",
1065 | "DayCountConvention",
1066 | "DayHemisphere",
1067 | "DaylightQ",
1068 | "DayMatchQ",
1069 | "DayName",
1070 | "DayNightTerminator",
1071 | "DayPlus",
1072 | "DayRange",
1073 | "DayRound",
1074 | "DeBruijnGraph",
1075 | "DeBruijnSequence",
1076 | "Decapitalize",
1077 | "DecimalForm",
1078 | "DeclarePackage",
1079 | "Decompose",
1080 | "Decrement",
1081 | "Decrypt",
1082 | "DedekindEta",
1083 | "DeepSpaceProbeData",
1084 | "Default",
1085 | "DefaultAxesStyle",
1086 | "DefaultBaseStyle",
1087 | "DefaultBoxStyle",
1088 | "DefaultButton",
1089 | "DefaultDuplicateCellStyle",
1090 | "DefaultDuration",
1091 | "DefaultElement",
1092 | "DefaultFaceGridsStyle",
1093 | "DefaultFieldHintStyle",
1094 | "DefaultFontProperties",
1095 | "DefaultFormatType",
1096 | "DefaultFrameStyle",
1097 | "DefaultFrameTicksStyle",
1098 | "DefaultGridLinesStyle",
1099 | "DefaultInlineFormatType",
1100 | "DefaultLabelStyle",
1101 | "DefaultMenuStyle",
1102 | "DefaultNaturalLanguage",
1103 | "DefaultNewCellStyle",
1104 | "DefaultNewInlineCellStyle",
1105 | "DefaultNotebook",
1106 | "DefaultOptions",
1107 | "DefaultPrintPrecision",
1108 | "DefaultStyleDefinitions",
1109 | "DefaultTicksStyle",
1110 | "DefaultTooltipStyle",
1111 | "DefaultValues",
1112 | "Defer",
1113 | "DefineInputStreamMethod",
1114 | "DefineOutputStreamMethod",
1115 | "DefineResourceFunction",
1116 | "Definition",
1117 | "Degree",
1118 | "DegreeCentrality",
1119 | "DegreeGraphDistribution",
1120 | "DEigensystem",
1121 | "DEigenvalues",
1122 | "Deinitialization",
1123 | "Del",
1124 | "DelaunayMesh",
1125 | "Delayed",
1126 | "Deletable",
1127 | "Delete",
1128 | "DeleteAdjacentDuplicates",
1129 | "DeleteAnomalies",
1130 | "DeleteBorderComponents",
1131 | "DeleteCases",
1132 | "DeleteContents",
1133 | "DeleteDirectory",
1134 | "DeleteDuplicates",
1135 | "DeleteDuplicatesBy",
1136 | "DeleteFile",
1137 | "DeleteMissing",
1138 | "DeleteObject",
1139 | "DeletePermissionsKey",
1140 | "DeleteSmallComponents",
1141 | "DeleteStopwords",
1142 | "DeletionWarning",
1143 | "DelimitedSequence",
1144 | "Delimiter",
1145 | "DelimiterAutoMatching",
1146 | "DelimiterFlashTime",
1147 | "DelimiterMatching",
1148 | "Delimiters",
1149 | "DeliveryFunction",
1150 | "Dendrogram",
1151 | "Denominator",
1152 | "DensityHistogram",
1153 | "DensityPlot",
1154 | "DensityPlot3D",
1155 | "DependentVariables",
1156 | "Deploy",
1157 | "Deployed",
1158 | "Depth",
1159 | "DepthFirstScan",
1160 | "Derivative",
1161 | "DerivativeFilter",
1162 | "DerivativePDETerm",
1163 | "DescriptorStateSpace",
1164 | "DesignMatrix",
1165 | "Det",
1166 | "DeviceClose",
1167 | "DeviceConfigure",
1168 | "DeviceExecute",
1169 | "DeviceExecuteAsynchronous",
1170 | "DeviceObject",
1171 | "DeviceOpen",
1172 | "DeviceRead",
1173 | "DeviceReadBuffer",
1174 | "DeviceReadLatest",
1175 | "DeviceReadList",
1176 | "DeviceReadTimeSeries",
1177 | "Devices",
1178 | "DeviceStreams",
1179 | "DeviceWrite",
1180 | "DeviceWriteBuffer",
1181 | "DGaussianWavelet",
1182 | "DiacriticalPositioning",
1183 | "Diagonal",
1184 | "DiagonalizableMatrixQ",
1185 | "DiagonalMatrix",
1186 | "DiagonalMatrixQ",
1187 | "Dialog",
1188 | "DialogInput",
1189 | "DialogNotebook",
1190 | "DialogProlog",
1191 | "DialogReturn",
1192 | "DialogSymbols",
1193 | "Diamond",
1194 | "DiamondMatrix",
1195 | "DiceDissimilarity",
1196 | "DictionaryLookup",
1197 | "DictionaryWordQ",
1198 | "DifferenceDelta",
1199 | "DifferenceQuotient",
1200 | "DifferenceRoot",
1201 | "DifferenceRootReduce",
1202 | "Differences",
1203 | "DifferentialD",
1204 | "DifferentialRoot",
1205 | "DifferentialRootReduce",
1206 | "DifferentiatorFilter",
1207 | "DiffusionPDETerm",
1208 | "DigitBlock",
1209 | "DigitCharacter",
1210 | "DigitCount",
1211 | "DigitQ",
1212 | "DihedralAngle",
1213 | "DihedralGroup",
1214 | "Dilation",
1215 | "DimensionalCombinations",
1216 | "DimensionalMeshComponents",
1217 | "DimensionReduce",
1218 | "DimensionReducerFunction",
1219 | "DimensionReduction",
1220 | "Dimensions",
1221 | "DiracComb",
1222 | "DiracDelta",
1223 | "DirectedEdge",
1224 | "DirectedEdges",
1225 | "DirectedGraph",
1226 | "DirectedGraphQ",
1227 | "DirectedInfinity",
1228 | "Direction",
1229 | "DirectionalLight",
1230 | "Directive",
1231 | "Directory",
1232 | "DirectoryName",
1233 | "DirectoryQ",
1234 | "DirectoryStack",
1235 | "DirichletBeta",
1236 | "DirichletCharacter",
1237 | "DirichletCondition",
1238 | "DirichletConvolve",
1239 | "DirichletDistribution",
1240 | "DirichletEta",
1241 | "DirichletL",
1242 | "DirichletLambda",
1243 | "DirichletTransform",
1244 | "DirichletWindow",
1245 | "DiscreteAsymptotic",
1246 | "DiscreteChirpZTransform",
1247 | "DiscreteConvolve",
1248 | "DiscreteDelta",
1249 | "DiscreteHadamardTransform",
1250 | "DiscreteIndicator",
1251 | "DiscreteInputOutputModel",
1252 | "DiscreteLimit",
1253 | "DiscreteLQEstimatorGains",
1254 | "DiscreteLQRegulatorGains",
1255 | "DiscreteLyapunovSolve",
1256 | "DiscreteMarkovProcess",
1257 | "DiscreteMaxLimit",
1258 | "DiscreteMinLimit",
1259 | "DiscretePlot",
1260 | "DiscretePlot3D",
1261 | "DiscreteRatio",
1262 | "DiscreteRiccatiSolve",
1263 | "DiscreteShift",
1264 | "DiscreteTimeModelQ",
1265 | "DiscreteUniformDistribution",
1266 | "DiscreteVariables",
1267 | "DiscreteWaveletData",
1268 | "DiscreteWaveletPacketTransform",
1269 | "DiscreteWaveletTransform",
1270 | "DiscretizeGraphics",
1271 | "DiscretizeRegion",
1272 | "Discriminant",
1273 | "DisjointQ",
1274 | "Disjunction",
1275 | "Disk",
1276 | "DiskMatrix",
1277 | "DiskSegment",
1278 | "Dispatch",
1279 | "DispersionEstimatorFunction",
1280 | "DisplayAllSteps",
1281 | "DisplayEndPacket",
1282 | "DisplayForm",
1283 | "DisplayFunction",
1284 | "DisplayPacket",
1285 | "DistanceFunction",
1286 | "DistanceMatrix",
1287 | "DistanceTransform",
1288 | "Distribute",
1289 | "Distributed",
1290 | "DistributedContexts",
1291 | "DistributeDefinitions",
1292 | "DistributionChart",
1293 | "DistributionFitTest",
1294 | "DistributionParameterAssumptions",
1295 | "DistributionParameterQ",
1296 | "Dithering",
1297 | "Div",
1298 | "Divide",
1299 | "DivideBy",
1300 | "Dividers",
1301 | "DivideSides",
1302 | "Divisible",
1303 | "Divisors",
1304 | "DivisorSigma",
1305 | "DivisorSum",
1306 | "DMSList",
1307 | "DMSString",
1308 | "Do",
1309 | "DockedCell",
1310 | "DockedCells",
1311 | "DocumentGenerator",
1312 | "DocumentGeneratorInformation",
1313 | "DocumentGenerators",
1314 | "DocumentNotebook",
1315 | "Dodecahedron",
1316 | "DominantColors",
1317 | "DominatorTreeGraph",
1318 | "DominatorVertexList",
1319 | "Dot",
1320 | "DotDashed",
1321 | "DotEqual",
1322 | "Dotted",
1323 | "DoubleBracketingBar",
1324 | "DoubleDownArrow",
1325 | "DoubleLeftArrow",
1326 | "DoubleLeftRightArrow",
1327 | "DoubleLeftTee",
1328 | "DoubleLongLeftArrow",
1329 | "DoubleLongLeftRightArrow",
1330 | "DoubleLongRightArrow",
1331 | "DoubleRightArrow",
1332 | "DoubleRightTee",
1333 | "DoubleUpArrow",
1334 | "DoubleUpDownArrow",
1335 | "DoubleVerticalBar",
1336 | "DownArrow",
1337 | "DownArrowBar",
1338 | "DownArrowUpArrow",
1339 | "DownLeftRightVector",
1340 | "DownLeftTeeVector",
1341 | "DownLeftVector",
1342 | "DownLeftVectorBar",
1343 | "DownRightTeeVector",
1344 | "DownRightVector",
1345 | "DownRightVectorBar",
1346 | "Downsample",
1347 | "DownTee",
1348 | "DownTeeArrow",
1349 | "DownValues",
1350 | "DrazinInverse",
1351 | "Drop",
1352 | "DropShadowing",
1353 | "DSolve",
1354 | "DSolveValue",
1355 | "Dt",
1356 | "DualPlanarGraph",
1357 | "DualPolyhedron",
1358 | "DualSystemsModel",
1359 | "DumpSave",
1360 | "DuplicateFreeQ",
1361 | "Duration",
1362 | "Dynamic",
1363 | "DynamicEvaluationTimeout",
1364 | "DynamicGeoGraphics",
1365 | "DynamicModule",
1366 | "DynamicModuleValues",
1367 | "DynamicSetting",
1368 | "DynamicUpdating",
1369 | "DynamicWrapper",
1370 | "E",
1371 | "EarthImpactData",
1372 | "EarthquakeData",
1373 | "EccentricityCentrality",
1374 | "EchoEvaluation",
1375 | "EchoFunction",
1376 | "EchoLabel",
1377 | "EclipseType",
1378 | "EdgeAdd",
1379 | "EdgeBetweennessCentrality",
1380 | "EdgeCapacity",
1381 | "EdgeChromaticNumber",
1382 | "EdgeConnectivity",
1383 | "EdgeContract",
1384 | "EdgeCost",
1385 | "EdgeCount",
1386 | "EdgeCoverQ",
1387 | "EdgeCycleMatrix",
1388 | "EdgeDelete",
1389 | "EdgeDetect",
1390 | "EdgeForm",
1391 | "EdgeIndex",
1392 | "EdgeLabels",
1393 | "EdgeLabelStyle",
1394 | "EdgeList",
1395 | "EdgeQ",
1396 | "EdgeRules",
1397 | "EdgeShapeFunction",
1398 | "EdgeStyle",
1399 | "EdgeTaggedGraph",
1400 | "EdgeTaggedGraphQ",
1401 | "EdgeTags",
1402 | "EdgeTransitiveGraphQ",
1403 | "EdgeValueRange",
1404 | "EdgeValueSizes",
1405 | "EdgeWeight",
1406 | "EdgeWeightedGraphQ",
1407 | "Editable",
1408 | "EditCellTagsSettings",
1409 | "EditDistance",
1410 | "EffectiveInterest",
1411 | "Eigensystem",
1412 | "Eigenvalues",
1413 | "EigenvectorCentrality",
1414 | "Eigenvectors",
1415 | "Element",
1416 | "ElementData",
1417 | "ElidedForms",
1418 | "Eliminate",
1419 | "Ellipsoid",
1420 | "EllipticE",
1421 | "EllipticExp",
1422 | "EllipticExpPrime",
1423 | "EllipticF",
1424 | "EllipticFilterModel",
1425 | "EllipticK",
1426 | "EllipticLog",
1427 | "EllipticNomeQ",
1428 | "EllipticPi",
1429 | "EllipticTheta",
1430 | "EllipticThetaPrime",
1431 | "EmbedCode",
1432 | "EmbeddedHTML",
1433 | "EmbeddedService",
1434 | "EmitSound",
1435 | "EmpiricalDistribution",
1436 | "EmptyGraphQ",
1437 | "EmptyRegion",
1438 | "Enabled",
1439 | "Enclose",
1440 | "Encode",
1441 | "Encrypt",
1442 | "EncryptedObject",
1443 | "End",
1444 | "EndDialogPacket",
1445 | "EndOfBuffer",
1446 | "EndOfFile",
1447 | "EndOfLine",
1448 | "EndOfString",
1449 | "EndPackage",
1450 | "EngineeringForm",
1451 | "EnterExpressionPacket",
1452 | "EnterTextPacket",
1453 | "Entity",
1454 | "EntityClass",
1455 | "EntityClassList",
1456 | "EntityCopies",
1457 | "EntityGroup",
1458 | "EntityInstance",
1459 | "EntityList",
1460 | "EntityPrefetch",
1461 | "EntityProperties",
1462 | "EntityProperty",
1463 | "EntityPropertyClass",
1464 | "EntityRegister",
1465 | "EntityStores",
1466 | "EntityTypeName",
1467 | "EntityUnregister",
1468 | "EntityValue",
1469 | "Entropy",
1470 | "EntropyFilter",
1471 | "Environment",
1472 | "Epilog",
1473 | "EpilogFunction",
1474 | "Equal",
1475 | "EqualTilde",
1476 | "EqualTo",
1477 | "Equilibrium",
1478 | "EquirippleFilterKernel",
1479 | "Equivalent",
1480 | "Erf",
1481 | "Erfc",
1482 | "Erfi",
1483 | "ErlangB",
1484 | "ErlangC",
1485 | "ErlangDistribution",
1486 | "Erosion",
1487 | "ErrorBox",
1488 | "EscapeRadius",
1489 | "EstimatedBackground",
1490 | "EstimatedDistribution",
1491 | "EstimatedPointNormals",
1492 | "EstimatedProcess",
1493 | "EstimatorGains",
1494 | "EstimatorRegulator",
1495 | "EuclideanDistance",
1496 | "EulerAngles",
1497 | "EulerCharacteristic",
1498 | "EulerE",
1499 | "EulerGamma",
1500 | "EulerianGraphQ",
1501 | "EulerMatrix",
1502 | "EulerPhi",
1503 | "Evaluatable",
1504 | "Evaluate",
1505 | "EvaluatePacket",
1506 | "EvaluationBox",
1507 | "EvaluationCell",
1508 | "EvaluationCompletionAction",
1509 | "EvaluationData",
1510 | "EvaluationElements",
1511 | "EvaluationMonitor",
1512 | "EvaluationNotebook",
1513 | "EvaluationObject",
1514 | "Evaluator",
1515 | "EvaluatorNames",
1516 | "EvenQ",
1517 | "EventData",
1518 | "EventHandler",
1519 | "EventLabels",
1520 | "EventSeries",
1521 | "ExactBlackmanWindow",
1522 | "ExactNumberQ",
1523 | "ExampleData",
1524 | "Except",
1525 | "ExcludedContexts",
1526 | "ExcludedForms",
1527 | "ExcludedLines",
1528 | "ExcludedPhysicalQuantities",
1529 | "ExcludePods",
1530 | "Exclusions",
1531 | "ExclusionsStyle",
1532 | "Exists",
1533 | "ExoplanetData",
1534 | "Exp",
1535 | "Expand",
1536 | "ExpandAll",
1537 | "ExpandDenominator",
1538 | "ExpandFileName",
1539 | "ExpandNumerator",
1540 | "Expectation",
1541 | "ExpGammaDistribution",
1542 | "ExpIntegralE",
1543 | "ExpIntegralEi",
1544 | "Exponent",
1545 | "ExponentFunction",
1546 | "ExponentialDistribution",
1547 | "ExponentialFamily",
1548 | "ExponentialGeneratingFunction",
1549 | "ExponentialMovingAverage",
1550 | "ExponentialPowerDistribution",
1551 | "ExponentPosition",
1552 | "ExponentStep",
1553 | "Export",
1554 | "ExportAutoReplacements",
1555 | "ExportByteArray",
1556 | "ExportForm",
1557 | "ExportString",
1558 | "Expression",
1559 | "ExpressionCell",
1560 | "ExpressionGraph",
1561 | "ExpressionUUID",
1562 | "ExpToTrig",
1563 | "ExtendedGCD",
1564 | "Extension",
1565 | "ExtentElementFunction",
1566 | "ExtentMarkers",
1567 | "ExtentSize",
1568 | "ExternalBundle",
1569 | "ExternalDataCharacterEncoding",
1570 | "ExternalOptions",
1571 | "ExternalTypeSignature",
1572 | "Extract",
1573 | "ExtractArchive",
1574 | "ExtractPacletArchive",
1575 | "ExtremeValueDistribution",
1576 | "FaceAlign",
1577 | "FaceForm",
1578 | "FaceGrids",
1579 | "FaceGridsStyle",
1580 | "FacialFeatures",
1581 | "Factor",
1582 | "Factorial",
1583 | "Factorial2",
1584 | "FactorialMoment",
1585 | "FactorialMomentGeneratingFunction",
1586 | "FactorialPower",
1587 | "FactorInteger",
1588 | "FactorList",
1589 | "FactorSquareFree",
1590 | "FactorSquareFreeList",
1591 | "FactorTerms",
1592 | "FactorTermsList",
1593 | "Failure",
1594 | "FailureAction",
1595 | "FailureDistribution",
1596 | "FailureQ",
1597 | "False",
1598 | "FareySequence",
1599 | "FARIMAProcess",
1600 | "FeatureImpactPlot",
1601 | "FeatureNames",
1602 | "FeatureNearest",
1603 | "FeatureSpacePlot",
1604 | "FeatureSpacePlot3D",
1605 | "FeatureTypes",
1606 | "FeatureValueDependencyPlot",
1607 | "FeatureValueImpactPlot",
1608 | "FeedbackLinearize",
1609 | "FeedbackSector",
1610 | "FeedbackSectorStyle",
1611 | "FeedbackType",
1612 | "FetalGrowthData",
1613 | "Fibonacci",
1614 | "Fibonorial",
1615 | "FieldCompletionFunction",
1616 | "FieldHint",
1617 | "FieldHintStyle",
1618 | "FieldMasked",
1619 | "FieldSize",
1620 | "File",
1621 | "FileBaseName",
1622 | "FileByteCount",
1623 | "FileDate",
1624 | "FileExistsQ",
1625 | "FileExtension",
1626 | "FileFormat",
1627 | "FileFormatQ",
1628 | "FileHash",
1629 | "FileNameDepth",
1630 | "FileNameDialogSettings",
1631 | "FileNameDrop",
1632 | "FileNameForms",
1633 | "FileNameJoin",
1634 | "FileNames",
1635 | "FileNameSetter",
1636 | "FileNameSplit",
1637 | "FileNameTake",
1638 | "FilePrint",
1639 | "FileSize",
1640 | "FileSystemMap",
1641 | "FileSystemScan",
1642 | "FileTemplate",
1643 | "FileTemplateApply",
1644 | "FileType",
1645 | "FilledCurve",
1646 | "FilledTorus",
1647 | "Filling",
1648 | "FillingStyle",
1649 | "FillingTransform",
1650 | "FilterRules",
1651 | "FinancialBond",
1652 | "FinancialData",
1653 | "FinancialDerivative",
1654 | "FinancialIndicator",
1655 | "Find",
1656 | "FindAnomalies",
1657 | "FindArgMax",
1658 | "FindArgMin",
1659 | "FindClique",
1660 | "FindClusters",
1661 | "FindCookies",
1662 | "FindCurvePath",
1663 | "FindCycle",
1664 | "FindDevices",
1665 | "FindDistribution",
1666 | "FindDistributionParameters",
1667 | "FindDivisions",
1668 | "FindEdgeColoring",
1669 | "FindEdgeCover",
1670 | "FindEdgeCut",
1671 | "FindEdgeIndependentPaths",
1672 | "FindEulerianCycle",
1673 | "FindFaces",
1674 | "FindFile",
1675 | "FindFit",
1676 | "FindFormula",
1677 | "FindFundamentalCycles",
1678 | "FindGeneratingFunction",
1679 | "FindGeoLocation",
1680 | "FindGeometricTransform",
1681 | "FindGraphCommunities",
1682 | "FindGraphIsomorphism",
1683 | "FindGraphPartition",
1684 | "FindHamiltonianCycle",
1685 | "FindHamiltonianPath",
1686 | "FindHiddenMarkovStates",
1687 | "FindIndependentEdgeSet",
1688 | "FindIndependentVertexSet",
1689 | "FindInstance",
1690 | "FindIntegerNullVector",
1691 | "FindIsomorphicSubgraph",
1692 | "FindKClan",
1693 | "FindKClique",
1694 | "FindKClub",
1695 | "FindKPlex",
1696 | "FindLibrary",
1697 | "FindLinearRecurrence",
1698 | "FindList",
1699 | "FindMatchingColor",
1700 | "FindMaximum",
1701 | "FindMaximumCut",
1702 | "FindMaximumFlow",
1703 | "FindMaxValue",
1704 | "FindMeshDefects",
1705 | "FindMinimum",
1706 | "FindMinimumCostFlow",
1707 | "FindMinimumCut",
1708 | "FindMinValue",
1709 | "FindPath",
1710 | "FindPeaks",
1711 | "FindPermutation",
1712 | "FindPlanarColoring",
1713 | "FindPostmanTour",
1714 | "FindProcessParameters",
1715 | "FindRegionTransform",
1716 | "FindRepeat",
1717 | "FindRoot",
1718 | "FindSequenceFunction",
1719 | "FindSettings",
1720 | "FindShortestPath",
1721 | "FindShortestTour",
1722 | "FindSpanningTree",
1723 | "FindSubgraphIsomorphism",
1724 | "FindThreshold",
1725 | "FindTransientRepeat",
1726 | "FindVertexColoring",
1727 | "FindVertexCover",
1728 | "FindVertexCut",
1729 | "FindVertexIndependentPaths",
1730 | "FinishDynamic",
1731 | "FiniteAbelianGroupCount",
1732 | "FiniteGroupCount",
1733 | "FiniteGroupData",
1734 | "First",
1735 | "FirstCase",
1736 | "FirstPassageTimeDistribution",
1737 | "FirstPosition",
1738 | "FischerGroupFi22",
1739 | "FischerGroupFi23",
1740 | "FischerGroupFi24Prime",
1741 | "FisherHypergeometricDistribution",
1742 | "FisherRatioTest",
1743 | "FisherZDistribution",
1744 | "Fit",
1745 | "FitRegularization",
1746 | "FittedModel",
1747 | "FixedOrder",
1748 | "FixedPoint",
1749 | "FixedPointList",
1750 | "Flat",
1751 | "FlatShading",
1752 | "Flatten",
1753 | "FlattenAt",
1754 | "FlatTopWindow",
1755 | "FlightData",
1756 | "FlipView",
1757 | "Floor",
1758 | "FlowPolynomial",
1759 | "Fold",
1760 | "FoldList",
1761 | "FoldPair",
1762 | "FoldPairList",
1763 | "FoldWhile",
1764 | "FoldWhileList",
1765 | "FollowRedirects",
1766 | "FontColor",
1767 | "FontFamily",
1768 | "FontProperties",
1769 | "FontSize",
1770 | "FontSlant",
1771 | "FontSubstitutions",
1772 | "FontTracking",
1773 | "FontVariations",
1774 | "FontWeight",
1775 | "For",
1776 | "ForAll",
1777 | "ForceVersionInstall",
1778 | "Format",
1779 | "FormatType",
1780 | "FormatTypeAutoConvert",
1781 | "FormBox",
1782 | "FormBoxOptions",
1783 | "FormFunction",
1784 | "FormLayoutFunction",
1785 | "FormObject",
1786 | "FormPage",
1787 | "FormProtectionMethod",
1788 | "FormulaData",
1789 | "FormulaLookup",
1790 | "FortranForm",
1791 | "Forward",
1792 | "ForwardBackward",
1793 | "Fourier",
1794 | "FourierCoefficient",
1795 | "FourierCosCoefficient",
1796 | "FourierCosSeries",
1797 | "FourierCosTransform",
1798 | "FourierDCT",
1799 | "FourierDCTFilter",
1800 | "FourierDCTMatrix",
1801 | "FourierDST",
1802 | "FourierDSTMatrix",
1803 | "FourierMatrix",
1804 | "FourierParameters",
1805 | "FourierSequenceTransform",
1806 | "FourierSeries",
1807 | "FourierSinCoefficient",
1808 | "FourierSinSeries",
1809 | "FourierSinTransform",
1810 | "FourierTransform",
1811 | "FourierTrigSeries",
1812 | "FoxH",
1813 | "FractionalBrownianMotionProcess",
1814 | "FractionalD",
1815 | "FractionalGaussianNoiseProcess",
1816 | "FractionalPart",
1817 | "FractionBox",
1818 | "FractionBoxOptions",
1819 | "FractionLine",
1820 | "Frame",
1821 | "FrameBox",
1822 | "FrameBoxOptions",
1823 | "Framed",
1824 | "FrameLabel",
1825 | "FrameMargins",
1826 | "FrameRate",
1827 | "FrameStyle",
1828 | "FrameTicks",
1829 | "FrameTicksStyle",
1830 | "FRatioDistribution",
1831 | "FrechetDistribution",
1832 | "FreeQ",
1833 | "FrenetSerretSystem",
1834 | "FrequencySamplingFilterKernel",
1835 | "FresnelC",
1836 | "FresnelF",
1837 | "FresnelG",
1838 | "FresnelS",
1839 | "Friday",
1840 | "FrobeniusNumber",
1841 | "FrobeniusSolve",
1842 | "FromAbsoluteTime",
1843 | "FromCharacterCode",
1844 | "FromCoefficientRules",
1845 | "FromContinuedFraction",
1846 | "FromDateString",
1847 | "FromDigits",
1848 | "FromDMS",
1849 | "FromEntity",
1850 | "FromJulianDate",
1851 | "FromLetterNumber",
1852 | "FromPolarCoordinates",
1853 | "FromRomanNumeral",
1854 | "FromSphericalCoordinates",
1855 | "FromUnixTime",
1856 | "Front",
1857 | "FrontEndDynamicExpression",
1858 | "FrontEndEventActions",
1859 | "FrontEndExecute",
1860 | "FrontEndToken",
1861 | "FrontEndTokenExecute",
1862 | "Full",
1863 | "FullDefinition",
1864 | "FullForm",
1865 | "FullGraphics",
1866 | "FullInformationOutputRegulator",
1867 | "FullRegion",
1868 | "FullSimplify",
1869 | "Function",
1870 | "FunctionAnalytic",
1871 | "FunctionBijective",
1872 | "FunctionContinuous",
1873 | "FunctionConvexity",
1874 | "FunctionDiscontinuities",
1875 | "FunctionDomain",
1876 | "FunctionExpand",
1877 | "FunctionInjective",
1878 | "FunctionInterpolation",
1879 | "FunctionMeromorphic",
1880 | "FunctionMonotonicity",
1881 | "FunctionPeriod",
1882 | "FunctionRange",
1883 | "FunctionSign",
1884 | "FunctionSingularities",
1885 | "FunctionSpace",
1886 | "FunctionSurjective",
1887 | "FussellVeselyImportance",
1888 | "GaborFilter",
1889 | "GaborMatrix",
1890 | "GaborWavelet",
1891 | "GainMargins",
1892 | "GainPhaseMargins",
1893 | "GalaxyData",
1894 | "Gamma",
1895 | "GammaDistribution",
1896 | "GammaRegularized",
1897 | "GapPenalty",
1898 | "GARCHProcess",
1899 | "Gather",
1900 | "GatherBy",
1901 | "GaugeFaceElementFunction",
1902 | "GaugeFaceStyle",
1903 | "GaugeFrameElementFunction",
1904 | "GaugeFrameSize",
1905 | "GaugeFrameStyle",
1906 | "GaugeLabels",
1907 | "GaugeMarkers",
1908 | "GaugeStyle",
1909 | "GaussianFilter",
1910 | "GaussianIntegers",
1911 | "GaussianMatrix",
1912 | "GaussianOrthogonalMatrixDistribution",
1913 | "GaussianSymplecticMatrixDistribution",
1914 | "GaussianUnitaryMatrixDistribution",
1915 | "GaussianWindow",
1916 | "GCD",
1917 | "GegenbauerC",
1918 | "General",
1919 | "GeneralizedLinearModelFit",
1920 | "GenerateAsymmetricKeyPair",
1921 | "GenerateConditions",
1922 | "GeneratedCell",
1923 | "GeneratedDocumentBinding",
1924 | "GenerateDocument",
1925 | "GeneratedParameters",
1926 | "GeneratedQuantityMagnitudes",
1927 | "GenerateHTTPResponse",
1928 | "GenerateSymmetricKey",
1929 | "GeneratingFunction",
1930 | "GeneratorDescription",
1931 | "GeneratorHistoryLength",
1932 | "GeneratorOutputType",
1933 | "GenericCylindricalDecomposition",
1934 | "GenomeData",
1935 | "GenomeLookup",
1936 | "GeoAntipode",
1937 | "GeoArea",
1938 | "GeoArraySize",
1939 | "GeoBackground",
1940 | "GeoBoundary",
1941 | "GeoBoundingBox",
1942 | "GeoBounds",
1943 | "GeoBoundsRegion",
1944 | "GeoBoundsRegionBoundary",
1945 | "GeoBubbleChart",
1946 | "GeoCenter",
1947 | "GeoCircle",
1948 | "GeoContourPlot",
1949 | "GeoDensityPlot",
1950 | "GeodesicClosing",
1951 | "GeodesicDilation",
1952 | "GeodesicErosion",
1953 | "GeodesicOpening",
1954 | "GeodesicPolyhedron",
1955 | "GeoDestination",
1956 | "GeodesyData",
1957 | "GeoDirection",
1958 | "GeoDisk",
1959 | "GeoDisplacement",
1960 | "GeoDistance",
1961 | "GeoDistanceList",
1962 | "GeoElevationData",
1963 | "GeoEntities",
1964 | "GeoGraphics",
1965 | "GeoGraphPlot",
1966 | "GeogravityModelData",
1967 | "GeoGridDirectionDifference",
1968 | "GeoGridLines",
1969 | "GeoGridLinesStyle",
1970 | "GeoGridPosition",
1971 | "GeoGridRange",
1972 | "GeoGridRangePadding",
1973 | "GeoGridUnitArea",
1974 | "GeoGridUnitDistance",
1975 | "GeoGridVector",
1976 | "GeoGroup",
1977 | "GeoHemisphere",
1978 | "GeoHemisphereBoundary",
1979 | "GeoHistogram",
1980 | "GeoIdentify",
1981 | "GeoImage",
1982 | "GeoLabels",
1983 | "GeoLength",
1984 | "GeoListPlot",
1985 | "GeoLocation",
1986 | "GeologicalPeriodData",
1987 | "GeomagneticModelData",
1988 | "GeoMarker",
1989 | "GeometricBrownianMotionProcess",
1990 | "GeometricDistribution",
1991 | "GeometricMean",
1992 | "GeometricMeanFilter",
1993 | "GeometricOptimization",
1994 | "GeometricTransformation",
1995 | "GeoModel",
1996 | "GeoNearest",
1997 | "GeoPath",
1998 | "GeoPolygon",
1999 | "GeoPosition",
2000 | "GeoPositionENU",
2001 | "GeoPositionXYZ",
2002 | "GeoProjection",
2003 | "GeoProjectionData",
2004 | "GeoRange",
2005 | "GeoRangePadding",
2006 | "GeoRegionValuePlot",
2007 | "GeoResolution",
2008 | "GeoScaleBar",
2009 | "GeoServer",
2010 | "GeoSmoothHistogram",
2011 | "GeoStreamPlot",
2012 | "GeoStyling",
2013 | "GeoStylingImageFunction",
2014 | "GeoVariant",
2015 | "GeoVector",
2016 | "GeoVectorENU",
2017 | "GeoVectorPlot",
2018 | "GeoVectorXYZ",
2019 | "GeoVisibleRegion",
2020 | "GeoVisibleRegionBoundary",
2021 | "GeoWithinQ",
2022 | "GeoZoomLevel",
2023 | "GestureHandler",
2024 | "Get",
2025 | "GetEnvironment",
2026 | "Glaisher",
2027 | "GlobalClusteringCoefficient",
2028 | "Glow",
2029 | "GoldenAngle",
2030 | "GoldenRatio",
2031 | "GompertzMakehamDistribution",
2032 | "GoochShading",
2033 | "GoodmanKruskalGamma",
2034 | "GoodmanKruskalGammaTest",
2035 | "Goto",
2036 | "GouraudShading",
2037 | "Grad",
2038 | "Gradient",
2039 | "GradientFilter",
2040 | "GradientFittedMesh",
2041 | "GradientOrientationFilter",
2042 | "GrammarApply",
2043 | "GrammarRules",
2044 | "GrammarToken",
2045 | "Graph",
2046 | "Graph3D",
2047 | "GraphAssortativity",
2048 | "GraphAutomorphismGroup",
2049 | "GraphCenter",
2050 | "GraphComplement",
2051 | "GraphData",
2052 | "GraphDensity",
2053 | "GraphDiameter",
2054 | "GraphDifference",
2055 | "GraphDisjointUnion",
2056 | "GraphDistance",
2057 | "GraphDistanceMatrix",
2058 | "GraphEmbedding",
2059 | "GraphHighlight",
2060 | "GraphHighlightStyle",
2061 | "GraphHub",
2062 | "Graphics",
2063 | "Graphics3D",
2064 | "GraphicsColumn",
2065 | "GraphicsComplex",
2066 | "GraphicsGrid",
2067 | "GraphicsGroup",
2068 | "GraphicsRow",
2069 | "GraphIntersection",
2070 | "GraphJoin",
2071 | "GraphLayers",
2072 | "GraphLayerStyle",
2073 | "GraphLayout",
2074 | "GraphLinkEfficiency",
2075 | "GraphPeriphery",
2076 | "GraphPlot",
2077 | "GraphPlot3D",
2078 | "GraphPower",
2079 | "GraphProduct",
2080 | "GraphPropertyDistribution",
2081 | "GraphQ",
2082 | "GraphRadius",
2083 | "GraphReciprocity",
2084 | "GraphSum",
2085 | "GraphUnion",
2086 | "Gray",
2087 | "GrayLevel",
2088 | "Greater",
2089 | "GreaterEqual",
2090 | "GreaterEqualLess",
2091 | "GreaterEqualThan",
2092 | "GreaterFullEqual",
2093 | "GreaterGreater",
2094 | "GreaterLess",
2095 | "GreaterSlantEqual",
2096 | "GreaterThan",
2097 | "GreaterTilde",
2098 | "Green",
2099 | "GreenFunction",
2100 | "Grid",
2101 | "GridBox",
2102 | "GridCreationSettings",
2103 | "GridDefaultElement",
2104 | "GridFrame",
2105 | "GridFrameMargins",
2106 | "GridGraph",
2107 | "GridLines",
2108 | "GridLinesStyle",
2109 | "GroebnerBasis",
2110 | "GroupActionBase",
2111 | "GroupBy",
2112 | "GroupCentralizer",
2113 | "GroupElementFromWord",
2114 | "GroupElementPosition",
2115 | "GroupElementQ",
2116 | "GroupElements",
2117 | "GroupElementToWord",
2118 | "GroupGenerators",
2119 | "Groupings",
2120 | "GroupMultiplicationTable",
2121 | "GroupOrbits",
2122 | "GroupOrder",
2123 | "GroupPageBreakWithin",
2124 | "GroupSetwiseStabilizer",
2125 | "GroupStabilizer",
2126 | "GroupStabilizerChain",
2127 | "GrowCutComponents",
2128 | "Gudermannian",
2129 | "GuidedFilter",
2130 | "GumbelDistribution",
2131 | "HaarWavelet",
2132 | "HadamardMatrix",
2133 | "HalfLine",
2134 | "HalfNormalDistribution",
2135 | "HalfPlane",
2136 | "HalfSpace",
2137 | "HalftoneShading",
2138 | "HamiltonianGraphQ",
2139 | "HammingDistance",
2140 | "HammingWindow",
2141 | "HankelH1",
2142 | "HankelH2",
2143 | "HankelMatrix",
2144 | "HankelTransform",
2145 | "HannPoissonWindow",
2146 | "HannWindow",
2147 | "HaradaNortonGroupHN",
2148 | "HararyGraph",
2149 | "HarmonicMean",
2150 | "HarmonicMeanFilter",
2151 | "HarmonicNumber",
2152 | "Hash",
2153 | "HatchFilling",
2154 | "HatchShading",
2155 | "Haversine",
2156 | "HazardFunction",
2157 | "Head",
2158 | "HeaderAlignment",
2159 | "HeaderBackground",
2160 | "HeaderDisplayFunction",
2161 | "HeaderLines",
2162 | "HeaderSize",
2163 | "HeaderStyle",
2164 | "Heads",
2165 | "HeatFluxValue",
2166 | "HeatInsulationValue",
2167 | "HeatOutflowValue",
2168 | "HeatRadiationValue",
2169 | "HeatSymmetryValue",
2170 | "HeatTemperatureCondition",
2171 | "HeatTransferPDEComponent",
2172 | "HeatTransferValue",
2173 | "HeavisideLambda",
2174 | "HeavisidePi",
2175 | "HeavisideTheta",
2176 | "HeldGroupHe",
2177 | "HelmholtzPDEComponent",
2178 | "HelpBrowserSettings",
2179 | "Here",
2180 | "HermiteDecomposition",
2181 | "HermiteH",
2182 | "Hermitian",
2183 | "HermitianMatrixQ",
2184 | "HessenbergDecomposition",
2185 | "HeunB",
2186 | "HeunBPrime",
2187 | "HeunC",
2188 | "HeunCPrime",
2189 | "HeunD",
2190 | "HeunDPrime",
2191 | "HeunG",
2192 | "HeunGPrime",
2193 | "HeunT",
2194 | "HeunTPrime",
2195 | "HexadecimalCharacter",
2196 | "Hexahedron",
2197 | "HiddenItems",
2198 | "HiddenMarkovProcess",
2199 | "Highlighted",
2200 | "HighlightGraph",
2201 | "HighlightImage",
2202 | "HighlightMesh",
2203 | "HighpassFilter",
2204 | "HigmanSimsGroupHS",
2205 | "HilbertCurve",
2206 | "HilbertFilter",
2207 | "HilbertMatrix",
2208 | "Histogram",
2209 | "Histogram3D",
2210 | "HistogramDistribution",
2211 | "HistogramList",
2212 | "HistogramTransform",
2213 | "HistogramTransformInterpolation",
2214 | "HistoricalPeriodData",
2215 | "HitMissTransform",
2216 | "HITSCentrality",
2217 | "HjorthDistribution",
2218 | "HodgeDual",
2219 | "HoeffdingD",
2220 | "HoeffdingDTest",
2221 | "Hold",
2222 | "HoldAll",
2223 | "HoldAllComplete",
2224 | "HoldComplete",
2225 | "HoldFirst",
2226 | "HoldForm",
2227 | "HoldPattern",
2228 | "HoldRest",
2229 | "HolidayCalendar",
2230 | "HorizontalGauge",
2231 | "HornerForm",
2232 | "HostLookup",
2233 | "HotellingTSquareDistribution",
2234 | "HoytDistribution",
2235 | "HTTPErrorResponse",
2236 | "HTTPRedirect",
2237 | "HTTPRequest",
2238 | "HTTPRequestData",
2239 | "HTTPResponse",
2240 | "Hue",
2241 | "HumanGrowthData",
2242 | "HumpDownHump",
2243 | "HumpEqual",
2244 | "HurwitzLerchPhi",
2245 | "HurwitzZeta",
2246 | "HyperbolicDistribution",
2247 | "HypercubeGraph",
2248 | "HyperexponentialDistribution",
2249 | "Hyperfactorial",
2250 | "Hypergeometric0F1",
2251 | "Hypergeometric0F1Regularized",
2252 | "Hypergeometric1F1",
2253 | "Hypergeometric1F1Regularized",
2254 | "Hypergeometric2F1",
2255 | "Hypergeometric2F1Regularized",
2256 | "HypergeometricDistribution",
2257 | "HypergeometricPFQ",
2258 | "HypergeometricPFQRegularized",
2259 | "HypergeometricU",
2260 | "Hyperlink",
2261 | "HyperlinkAction",
2262 | "Hyperplane",
2263 | "Hyphenation",
2264 | "HypoexponentialDistribution",
2265 | "HypothesisTestData",
2266 | "I",
2267 | "IconData",
2268 | "Iconize",
2269 | "IconRules",
2270 | "Icosahedron",
2271 | "Identity",
2272 | "IdentityMatrix",
2273 | "If",
2274 | "IfCompiled",
2275 | "IgnoreCase",
2276 | "IgnoreDiacritics",
2277 | "IgnorePunctuation",
2278 | "IgnoringInactive",
2279 | "Im",
2280 | "Image",
2281 | "Image3D",
2282 | "Image3DProjection",
2283 | "Image3DSlices",
2284 | "ImageAccumulate",
2285 | "ImageAdd",
2286 | "ImageAdjust",
2287 | "ImageAlign",
2288 | "ImageApply",
2289 | "ImageApplyIndexed",
2290 | "ImageAspectRatio",
2291 | "ImageAssemble",
2292 | "ImageCapture",
2293 | "ImageCaptureFunction",
2294 | "ImageChannels",
2295 | "ImageClip",
2296 | "ImageCollage",
2297 | "ImageColorSpace",
2298 | "ImageCompose",
2299 | "ImageConvolve",
2300 | "ImageCooccurrence",
2301 | "ImageCorners",
2302 | "ImageCorrelate",
2303 | "ImageCorrespondingPoints",
2304 | "ImageCrop",
2305 | "ImageData",
2306 | "ImageDeconvolve",
2307 | "ImageDemosaic",
2308 | "ImageDifference",
2309 | "ImageDimensions",
2310 | "ImageDisplacements",
2311 | "ImageDistance",
2312 | "ImageEffect",
2313 | "ImageExposureCombine",
2314 | "ImageFeatureTrack",
2315 | "ImageFileApply",
2316 | "ImageFileFilter",
2317 | "ImageFileScan",
2318 | "ImageFilter",
2319 | "ImageFocusCombine",
2320 | "ImageForestingComponents",
2321 | "ImageFormattingWidth",
2322 | "ImageForwardTransformation",
2323 | "ImageHistogram",
2324 | "ImageIdentify",
2325 | "ImageInstanceQ",
2326 | "ImageKeypoints",
2327 | "ImageLabels",
2328 | "ImageLegends",
2329 | "ImageLevels",
2330 | "ImageLines",
2331 | "ImageMargins",
2332 | "ImageMarker",
2333 | "ImageMeasurements",
2334 | "ImageMesh",
2335 | "ImageMultiply",
2336 | "ImagePad",
2337 | "ImagePadding",
2338 | "ImagePartition",
2339 | "ImagePeriodogram",
2340 | "ImagePerspectiveTransformation",
2341 | "ImagePreviewFunction",
2342 | "ImageQ",
2343 | "ImageRecolor",
2344 | "ImageReflect",
2345 | "ImageRegion",
2346 | "ImageResize",
2347 | "ImageResolution",
2348 | "ImageRestyle",
2349 | "ImageRotate",
2350 | "ImageSaliencyFilter",
2351 | "ImageScaled",
2352 | "ImageScan",
2353 | "ImageSize",
2354 | "ImageSizeAction",
2355 | "ImageSizeMultipliers",
2356 | "ImageSubtract",
2357 | "ImageTake",
2358 | "ImageTransformation",
2359 | "ImageTrim",
2360 | "ImageType",
2361 | "ImageValue",
2362 | "ImageValuePositions",
2363 | "ImageVectorscopePlot",
2364 | "ImageWaveformPlot",
2365 | "ImagingDevice",
2366 | "ImplicitD",
2367 | "ImplicitRegion",
2368 | "Implies",
2369 | "Import",
2370 | "ImportAutoReplacements",
2371 | "ImportByteArray",
2372 | "ImportOptions",
2373 | "ImportString",
2374 | "ImprovementImportance",
2375 | "Inactivate",
2376 | "Inactive",
2377 | "IncidenceGraph",
2378 | "IncidenceList",
2379 | "IncidenceMatrix",
2380 | "IncludeConstantBasis",
2381 | "IncludedContexts",
2382 | "IncludeDefinitions",
2383 | "IncludeDirectories",
2384 | "IncludeFileExtension",
2385 | "IncludeGeneratorTasks",
2386 | "IncludeInflections",
2387 | "IncludeMetaInformation",
2388 | "IncludePods",
2389 | "IncludeQuantities",
2390 | "IncludeSingularSolutions",
2391 | "IncludeWindowTimes",
2392 | "Increment",
2393 | "IndefiniteMatrixQ",
2394 | "IndependenceTest",
2395 | "IndependentEdgeSetQ",
2396 | "IndependentPhysicalQuantity",
2397 | "IndependentUnit",
2398 | "IndependentUnitDimension",
2399 | "IndependentVertexSetQ",
2400 | "Indeterminate",
2401 | "IndeterminateThreshold",
2402 | "Indexed",
2403 | "IndexEdgeTaggedGraph",
2404 | "IndexGraph",
2405 | "InexactNumberQ",
2406 | "InfiniteLine",
2407 | "InfiniteLineThrough",
2408 | "InfinitePlane",
2409 | "Infinity",
2410 | "Infix",
2411 | "InflationAdjust",
2412 | "InflationMethod",
2413 | "Information",
2414 | "Inherited",
2415 | "InheritScope",
2416 | "InhomogeneousPoissonProcess",
2417 | "Initialization",
2418 | "InitializationCell",
2419 | "InitializationCellEvaluation",
2420 | "InitializationCellWarning",
2421 | "InitialSeeding",
2422 | "Inner",
2423 | "InnerPolygon",
2424 | "InnerPolyhedron",
2425 | "Inpaint",
2426 | "Input",
2427 | "InputAliases",
2428 | "InputAssumptions",
2429 | "InputAutoReplacements",
2430 | "InputField",
2431 | "InputForm",
2432 | "InputNamePacket",
2433 | "InputNotebook",
2434 | "InputPacket",
2435 | "InputStream",
2436 | "InputString",
2437 | "InputStringPacket",
2438 | "Insert",
2439 | "InsertionFunction",
2440 | "InsertLinebreaks",
2441 | "InsertResults",
2442 | "Inset",
2443 | "Insphere",
2444 | "Install",
2445 | "InstallService",
2446 | "Integer",
2447 | "IntegerDigits",
2448 | "IntegerExponent",
2449 | "IntegerLength",
2450 | "IntegerName",
2451 | "IntegerPart",
2452 | "IntegerPartitions",
2453 | "IntegerQ",
2454 | "IntegerReverse",
2455 | "Integers",
2456 | "IntegerString",
2457 | "Integrate",
2458 | "Interactive",
2459 | "InteractiveTradingChart",
2460 | "Interleaving",
2461 | "InternallyBalancedDecomposition",
2462 | "InterpolatingFunction",
2463 | "InterpolatingPolynomial",
2464 | "Interpolation",
2465 | "InterpolationOrder",
2466 | "InterpolationPoints",
2467 | "Interpretation",
2468 | "InterpretationBox",
2469 | "InterpretationBoxOptions",
2470 | "InterpretationFunction",
2471 | "Interpreter",
2472 | "InterquartileRange",
2473 | "Interrupt",
2474 | "IntersectingQ",
2475 | "Intersection",
2476 | "Interval",
2477 | "IntervalIntersection",
2478 | "IntervalMarkers",
2479 | "IntervalMarkersStyle",
2480 | "IntervalMemberQ",
2481 | "IntervalSlider",
2482 | "IntervalUnion",
2483 | "Inverse",
2484 | "InverseBetaRegularized",
2485 | "InverseBilateralLaplaceTransform",
2486 | "InverseBilateralZTransform",
2487 | "InverseCDF",
2488 | "InverseChiSquareDistribution",
2489 | "InverseContinuousWaveletTransform",
2490 | "InverseDistanceTransform",
2491 | "InverseEllipticNomeQ",
2492 | "InverseErf",
2493 | "InverseErfc",
2494 | "InverseFourier",
2495 | "InverseFourierCosTransform",
2496 | "InverseFourierSequenceTransform",
2497 | "InverseFourierSinTransform",
2498 | "InverseFourierTransform",
2499 | "InverseFunction",
2500 | "InverseFunctions",
2501 | "InverseGammaDistribution",
2502 | "InverseGammaRegularized",
2503 | "InverseGaussianDistribution",
2504 | "InverseGudermannian",
2505 | "InverseHankelTransform",
2506 | "InverseHaversine",
2507 | "InverseJacobiCD",
2508 | "InverseJacobiCN",
2509 | "InverseJacobiCS",
2510 | "InverseJacobiDC",
2511 | "InverseJacobiDN",
2512 | "InverseJacobiDS",
2513 | "InverseJacobiNC",
2514 | "InverseJacobiND",
2515 | "InverseJacobiNS",
2516 | "InverseJacobiSC",
2517 | "InverseJacobiSD",
2518 | "InverseJacobiSN",
2519 | "InverseLaplaceTransform",
2520 | "InverseMellinTransform",
2521 | "InversePermutation",
2522 | "InverseRadon",
2523 | "InverseRadonTransform",
2524 | "InverseSeries",
2525 | "InverseShortTimeFourier",
2526 | "InverseSpectrogram",
2527 | "InverseSurvivalFunction",
2528 | "InverseTransformedRegion",
2529 | "InverseWaveletTransform",
2530 | "InverseWeierstrassP",
2531 | "InverseWishartMatrixDistribution",
2532 | "InverseZTransform",
2533 | "Invisible",
2534 | "IPAddress",
2535 | "IrreduciblePolynomialQ",
2536 | "IslandData",
2537 | "IsolatingInterval",
2538 | "IsomorphicGraphQ",
2539 | "IsomorphicSubgraphQ",
2540 | "IsotopeData",
2541 | "Italic",
2542 | "Item",
2543 | "ItemAspectRatio",
2544 | "ItemDisplayFunction",
2545 | "ItemSize",
2546 | "ItemStyle",
2547 | "ItoProcess",
2548 | "JaccardDissimilarity",
2549 | "JacobiAmplitude",
2550 | "JacobiCD",
2551 | "JacobiCN",
2552 | "JacobiCS",
2553 | "JacobiDC",
2554 | "JacobiDN",
2555 | "JacobiDS",
2556 | "JacobiEpsilon",
2557 | "JacobiNC",
2558 | "JacobiND",
2559 | "JacobiNS",
2560 | "JacobiP",
2561 | "JacobiSC",
2562 | "JacobiSD",
2563 | "JacobiSN",
2564 | "JacobiSymbol",
2565 | "JacobiZeta",
2566 | "JacobiZN",
2567 | "JankoGroupJ1",
2568 | "JankoGroupJ2",
2569 | "JankoGroupJ3",
2570 | "JankoGroupJ4",
2571 | "JarqueBeraALMTest",
2572 | "JohnsonDistribution",
2573 | "Join",
2574 | "JoinAcross",
2575 | "Joined",
2576 | "JoinedCurve",
2577 | "JoinForm",
2578 | "JordanDecomposition",
2579 | "JordanModelDecomposition",
2580 | "JulianDate",
2581 | "JuliaSetBoettcher",
2582 | "JuliaSetIterationCount",
2583 | "JuliaSetPlot",
2584 | "JuliaSetPoints",
2585 | "KagiChart",
2586 | "KaiserBesselWindow",
2587 | "KaiserWindow",
2588 | "KalmanEstimator",
2589 | "KalmanFilter",
2590 | "KarhunenLoeveDecomposition",
2591 | "KaryTree",
2592 | "KatzCentrality",
2593 | "KCoreComponents",
2594 | "KDistribution",
2595 | "KEdgeConnectedComponents",
2596 | "KEdgeConnectedGraphQ",
2597 | "KeepExistingVersion",
2598 | "KelvinBei",
2599 | "KelvinBer",
2600 | "KelvinKei",
2601 | "KelvinKer",
2602 | "KendallTau",
2603 | "KendallTauTest",
2604 | "KernelMixtureDistribution",
2605 | "KernelObject",
2606 | "Kernels",
2607 | "Key",
2608 | "KeyCollisionFunction",
2609 | "KeyComplement",
2610 | "KeyDrop",
2611 | "KeyDropFrom",
2612 | "KeyExistsQ",
2613 | "KeyFreeQ",
2614 | "KeyIntersection",
2615 | "KeyMap",
2616 | "KeyMemberQ",
2617 | "KeypointStrength",
2618 | "Keys",
2619 | "KeySelect",
2620 | "KeySort",
2621 | "KeySortBy",
2622 | "KeyTake",
2623 | "KeyUnion",
2624 | "KeyValueMap",
2625 | "KeyValuePattern",
2626 | "Khinchin",
2627 | "KillProcess",
2628 | "KirchhoffGraph",
2629 | "KirchhoffMatrix",
2630 | "KleinInvariantJ",
2631 | "KnapsackSolve",
2632 | "KnightTourGraph",
2633 | "KnotData",
2634 | "KnownUnitQ",
2635 | "KochCurve",
2636 | "KolmogorovSmirnovTest",
2637 | "KroneckerDelta",
2638 | "KroneckerModelDecomposition",
2639 | "KroneckerProduct",
2640 | "KroneckerSymbol",
2641 | "KuiperTest",
2642 | "KumaraswamyDistribution",
2643 | "Kurtosis",
2644 | "KuwaharaFilter",
2645 | "KVertexConnectedComponents",
2646 | "KVertexConnectedGraphQ",
2647 | "LABColor",
2648 | "Label",
2649 | "Labeled",
2650 | "LabelingFunction",
2651 | "LabelingSize",
2652 | "LabelStyle",
2653 | "LabelVisibility",
2654 | "LaguerreL",
2655 | "LakeData",
2656 | "LambdaComponents",
2657 | "LameC",
2658 | "LameCPrime",
2659 | "LameEigenvalueA",
2660 | "LameEigenvalueB",
2661 | "LameS",
2662 | "LameSPrime",
2663 | "LaminaData",
2664 | "LanczosWindow",
2665 | "LandauDistribution",
2666 | "Language",
2667 | "LanguageCategory",
2668 | "LanguageData",
2669 | "LanguageIdentify",
2670 | "LaplaceDistribution",
2671 | "LaplaceTransform",
2672 | "Laplacian",
2673 | "LaplacianFilter",
2674 | "LaplacianGaussianFilter",
2675 | "LaplacianPDETerm",
2676 | "Large",
2677 | "Larger",
2678 | "Last",
2679 | "Latitude",
2680 | "LatitudeLongitude",
2681 | "LatticeData",
2682 | "LatticeReduce",
2683 | "LaunchKernels",
2684 | "LayeredGraphPlot",
2685 | "LayeredGraphPlot3D",
2686 | "LayerSizeFunction",
2687 | "LCHColor",
2688 | "LCM",
2689 | "LeaderSize",
2690 | "LeafCount",
2691 | "LeapVariant",
2692 | "LeapYearQ",
2693 | "LearnDistribution",
2694 | "LearnedDistribution",
2695 | "LearningRate",
2696 | "LeastSquares",
2697 | "LeastSquaresFilterKernel",
2698 | "Left",
2699 | "LeftArrow",
2700 | "LeftArrowBar",
2701 | "LeftArrowRightArrow",
2702 | "LeftDownTeeVector",
2703 | "LeftDownVector",
2704 | "LeftDownVectorBar",
2705 | "LeftRightArrow",
2706 | "LeftRightVector",
2707 | "LeftTee",
2708 | "LeftTeeArrow",
2709 | "LeftTeeVector",
2710 | "LeftTriangle",
2711 | "LeftTriangleBar",
2712 | "LeftTriangleEqual",
2713 | "LeftUpDownVector",
2714 | "LeftUpTeeVector",
2715 | "LeftUpVector",
2716 | "LeftUpVectorBar",
2717 | "LeftVector",
2718 | "LeftVectorBar",
2719 | "LegendAppearance",
2720 | "Legended",
2721 | "LegendFunction",
2722 | "LegendLabel",
2723 | "LegendLayout",
2724 | "LegendMargins",
2725 | "LegendMarkers",
2726 | "LegendMarkerSize",
2727 | "LegendreP",
2728 | "LegendreQ",
2729 | "Length",
2730 | "LengthWhile",
2731 | "LerchPhi",
2732 | "Less",
2733 | "LessEqual",
2734 | "LessEqualGreater",
2735 | "LessEqualThan",
2736 | "LessFullEqual",
2737 | "LessGreater",
2738 | "LessLess",
2739 | "LessSlantEqual",
2740 | "LessThan",
2741 | "LessTilde",
2742 | "LetterCharacter",
2743 | "LetterCounts",
2744 | "LetterNumber",
2745 | "LetterQ",
2746 | "Level",
2747 | "LeveneTest",
2748 | "LeviCivitaTensor",
2749 | "LevyDistribution",
2750 | "LexicographicOrder",
2751 | "LexicographicSort",
2752 | "LibraryDataType",
2753 | "LibraryFunction",
2754 | "LibraryFunctionError",
2755 | "LibraryFunctionInformation",
2756 | "LibraryFunctionLoad",
2757 | "LibraryFunctionUnload",
2758 | "LibraryLoad",
2759 | "LibraryUnload",
2760 | "LiftingFilterData",
2761 | "LiftingWaveletTransform",
2762 | "LightBlue",
2763 | "LightBrown",
2764 | "LightCyan",
2765 | "Lighter",
2766 | "LightGray",
2767 | "LightGreen",
2768 | "Lighting",
2769 | "LightingAngle",
2770 | "LightMagenta",
2771 | "LightOrange",
2772 | "LightPink",
2773 | "LightPurple",
2774 | "LightRed",
2775 | "LightYellow",
2776 | "Likelihood",
2777 | "Limit",
2778 | "LimitsPositioning",
2779 | "LimitsPositioningTokens",
2780 | "LindleyDistribution",
2781 | "Line",
2782 | "LinearFractionalOptimization",
2783 | "LinearFractionalTransform",
2784 | "LinearGradientFilling",
2785 | "LinearGradientImage",
2786 | "LinearizingTransformationData",
2787 | "LinearModelFit",
2788 | "LinearOffsetFunction",
2789 | "LinearOptimization",
2790 | "LinearRecurrence",
2791 | "LinearSolve",
2792 | "LinearSolveFunction",
2793 | "LinebreakAdjustments",
2794 | "LineBreakChart",
2795 | "LineBreakWithin",
2796 | "LineGraph",
2797 | "LineIndent",
2798 | "LineIndentMaxFraction",
2799 | "LineIntegralConvolutionPlot",
2800 | "LineIntegralConvolutionScale",
2801 | "LineLegend",
2802 | "LineSpacing",
2803 | "LinkActivate",
2804 | "LinkClose",
2805 | "LinkConnect",
2806 | "LinkCreate",
2807 | "LinkFunction",
2808 | "LinkInterrupt",
2809 | "LinkLaunch",
2810 | "LinkObject",
2811 | "LinkPatterns",
2812 | "LinkProtocol",
2813 | "LinkRankCentrality",
2814 | "LinkRead",
2815 | "LinkReadyQ",
2816 | "Links",
2817 | "LinkWrite",
2818 | "LiouvilleLambda",
2819 | "List",
2820 | "Listable",
2821 | "ListAnimate",
2822 | "ListContourPlot",
2823 | "ListContourPlot3D",
2824 | "ListConvolve",
2825 | "ListCorrelate",
2826 | "ListCurvePathPlot",
2827 | "ListDeconvolve",
2828 | "ListDensityPlot",
2829 | "ListDensityPlot3D",
2830 | "ListFormat",
2831 | "ListFourierSequenceTransform",
2832 | "ListInterpolation",
2833 | "ListLineIntegralConvolutionPlot",
2834 | "ListLinePlot",
2835 | "ListLinePlot3D",
2836 | "ListLogLinearPlot",
2837 | "ListLogLogPlot",
2838 | "ListLogPlot",
2839 | "ListPicker",
2840 | "ListPickerBox",
2841 | "ListPickerBoxOptions",
2842 | "ListPlay",
2843 | "ListPlot",
2844 | "ListPlot3D",
2845 | "ListPointPlot3D",
2846 | "ListPolarPlot",
2847 | "ListQ",
2848 | "ListSliceContourPlot3D",
2849 | "ListSliceDensityPlot3D",
2850 | "ListSliceVectorPlot3D",
2851 | "ListStepPlot",
2852 | "ListStreamDensityPlot",
2853 | "ListStreamPlot",
2854 | "ListStreamPlot3D",
2855 | "ListSurfacePlot3D",
2856 | "ListVectorDensityPlot",
2857 | "ListVectorDisplacementPlot",
2858 | "ListVectorDisplacementPlot3D",
2859 | "ListVectorPlot",
2860 | "ListVectorPlot3D",
2861 | "ListZTransform",
2862 | "LocalAdaptiveBinarize",
2863 | "LocalCache",
2864 | "LocalClusteringCoefficient",
2865 | "LocalEvaluate",
2866 | "LocalizeVariables",
2867 | "LocalObject",
2868 | "LocalObjects",
2869 | "LocalSubmit",
2870 | "LocalSymbol",
2871 | "LocalTime",
2872 | "LocalTimeZone",
2873 | "LocationEquivalenceTest",
2874 | "LocationTest",
2875 | "Locator",
2876 | "LocatorAutoCreate",
2877 | "LocatorPane",
2878 | "LocatorRegion",
2879 | "Locked",
2880 | "Log",
2881 | "Log10",
2882 | "Log2",
2883 | "LogBarnesG",
2884 | "LogGamma",
2885 | "LogGammaDistribution",
2886 | "LogicalExpand",
2887 | "LogIntegral",
2888 | "LogisticDistribution",
2889 | "LogisticSigmoid",
2890 | "LogitModelFit",
2891 | "LogLikelihood",
2892 | "LogLinearPlot",
2893 | "LogLogisticDistribution",
2894 | "LogLogPlot",
2895 | "LogMultinormalDistribution",
2896 | "LogNormalDistribution",
2897 | "LogPlot",
2898 | "LogRankTest",
2899 | "LogSeriesDistribution",
2900 | "Longest",
2901 | "LongestCommonSequence",
2902 | "LongestCommonSequencePositions",
2903 | "LongestCommonSubsequence",
2904 | "LongestCommonSubsequencePositions",
2905 | "LongestOrderedSequence",
2906 | "Longitude",
2907 | "LongLeftArrow",
2908 | "LongLeftRightArrow",
2909 | "LongRightArrow",
2910 | "Lookup",
2911 | "LoopFreeGraphQ",
2912 | "Looping",
2913 | "LowerCaseQ",
2914 | "LowerLeftArrow",
2915 | "LowerRightArrow",
2916 | "LowerTriangularize",
2917 | "LowerTriangularMatrix",
2918 | "LowerTriangularMatrixQ",
2919 | "LowpassFilter",
2920 | "LQEstimatorGains",
2921 | "LQGRegulator",
2922 | "LQOutputRegulatorGains",
2923 | "LQRegulatorGains",
2924 | "LucasL",
2925 | "LuccioSamiComponents",
2926 | "LUDecomposition",
2927 | "LunarEclipse",
2928 | "LUVColor",
2929 | "LyapunovSolve",
2930 | "LyonsGroupLy",
2931 | "MachineNumberQ",
2932 | "MachinePrecision",
2933 | "Magenta",
2934 | "Magnification",
2935 | "Magnify",
2936 | "MailAddressValidation",
2937 | "MailReceiverFunction",
2938 | "MailResponseFunction",
2939 | "MailSettings",
2940 | "Majority",
2941 | "MakeBoxes",
2942 | "MakeExpression",
2943 | "ManagedLibraryExpressionID",
2944 | "ManagedLibraryExpressionQ",
2945 | "MandelbrotSetBoettcher",
2946 | "MandelbrotSetDistance",
2947 | "MandelbrotSetIterationCount",
2948 | "MandelbrotSetMemberQ",
2949 | "MandelbrotSetPlot",
2950 | "MangoldtLambda",
2951 | "ManhattanDistance",
2952 | "Manipulate",
2953 | "Manipulator",
2954 | "MannedSpaceMissionData",
2955 | "MannWhitneyTest",
2956 | "MantissaExponent",
2957 | "Manual",
2958 | "Map",
2959 | "MapAll",
2960 | "MapApply",
2961 | "MapAt",
2962 | "MapIndexed",
2963 | "MAProcess",
2964 | "MapThread",
2965 | "MarchenkoPasturDistribution",
2966 | "MarcumQ",
2967 | "MardiaCombinedTest",
2968 | "MardiaKurtosisTest",
2969 | "MardiaSkewnessTest",
2970 | "MarginalDistribution",
2971 | "MarkovProcessProperties",
2972 | "Masking",
2973 | "MassConcentrationCondition",
2974 | "MassFluxValue",
2975 | "MassImpermeableBoundaryValue",
2976 | "MassOutflowValue",
2977 | "MassSymmetryValue",
2978 | "MassTransferValue",
2979 | "MassTransportPDEComponent",
2980 | "MatchingDissimilarity",
2981 | "MatchLocalNames",
2982 | "MatchQ",
2983 | "MaterialShading",
2984 | "MathematicalFunctionData",
2985 | "MathieuC",
2986 | "MathieuCharacteristicA",
2987 | "MathieuCharacteristicB",
2988 | "MathieuCharacteristicExponent",
2989 | "MathieuCPrime",
2990 | "MathieuGroupM11",
2991 | "MathieuGroupM12",
2992 | "MathieuGroupM22",
2993 | "MathieuGroupM23",
2994 | "MathieuGroupM24",
2995 | "MathieuS",
2996 | "MathieuSPrime",
2997 | "MathMLForm",
2998 | "Matrices",
2999 | "MatrixExp",
3000 | "MatrixForm",
3001 | "MatrixFunction",
3002 | "MatrixLog",
3003 | "MatrixNormalDistribution",
3004 | "MatrixPlot",
3005 | "MatrixPower",
3006 | "MatrixPropertyDistribution",
3007 | "MatrixQ",
3008 | "MatrixRank",
3009 | "MatrixTDistribution",
3010 | "Max",
3011 | "MaxCellMeasure",
3012 | "MaxColorDistance",
3013 | "MaxDate",
3014 | "MaxDetect",
3015 | "MaxDuration",
3016 | "MaxExtraBandwidths",
3017 | "MaxExtraConditions",
3018 | "MaxFeatureDisplacement",
3019 | "MaxFeatures",
3020 | "MaxFilter",
3021 | "MaximalBy",
3022 | "Maximize",
3023 | "MaxItems",
3024 | "MaxIterations",
3025 | "MaxLimit",
3026 | "MaxMemoryUsed",
3027 | "MaxMixtureKernels",
3028 | "MaxOverlapFraction",
3029 | "MaxPlotPoints",
3030 | "MaxRecursion",
3031 | "MaxStableDistribution",
3032 | "MaxStepFraction",
3033 | "MaxSteps",
3034 | "MaxStepSize",
3035 | "MaxValue",
3036 | "MaxwellDistribution",
3037 | "McLaughlinGroupMcL",
3038 | "Mean",
3039 | "MeanClusteringCoefficient",
3040 | "MeanDegreeConnectivity",
3041 | "MeanDeviation",
3042 | "MeanFilter",
3043 | "MeanGraphDistance",
3044 | "MeanNeighborDegree",
3045 | "MeanShift",
3046 | "MeanShiftFilter",
3047 | "Median",
3048 | "MedianDeviation",
3049 | "MedianFilter",
3050 | "MedicalTestData",
3051 | "Medium",
3052 | "MeijerG",
3053 | "MeijerGReduce",
3054 | "MeixnerDistribution",
3055 | "MellinConvolve",
3056 | "MellinTransform",
3057 | "MemberQ",
3058 | "MemoryAvailable",
3059 | "MemoryConstrained",
3060 | "MemoryConstraint",
3061 | "MemoryInUse",
3062 | "MengerMesh",
3063 | "MenuCommandKey",
3064 | "MenuPacket",
3065 | "MenuSortingValue",
3066 | "MenuStyle",
3067 | "MenuView",
3068 | "Merge",
3069 | "MersennePrimeExponent",
3070 | "MersennePrimeExponentQ",
3071 | "Mesh",
3072 | "MeshCellCentroid",
3073 | "MeshCellCount",
3074 | "MeshCellHighlight",
3075 | "MeshCellIndex",
3076 | "MeshCellLabel",
3077 | "MeshCellMarker",
3078 | "MeshCellMeasure",
3079 | "MeshCellQuality",
3080 | "MeshCells",
3081 | "MeshCellShapeFunction",
3082 | "MeshCellStyle",
3083 | "MeshConnectivityGraph",
3084 | "MeshCoordinates",
3085 | "MeshFunctions",
3086 | "MeshPrimitives",
3087 | "MeshQualityGoal",
3088 | "MeshRefinementFunction",
3089 | "MeshRegion",
3090 | "MeshRegionQ",
3091 | "MeshShading",
3092 | "MeshStyle",
3093 | "Message",
3094 | "MessageDialog",
3095 | "MessageList",
3096 | "MessageName",
3097 | "MessagePacket",
3098 | "Messages",
3099 | "MetaInformation",
3100 | "MeteorShowerData",
3101 | "Method",
3102 | "MexicanHatWavelet",
3103 | "MeyerWavelet",
3104 | "Min",
3105 | "MinColorDistance",
3106 | "MinDate",
3107 | "MinDetect",
3108 | "MineralData",
3109 | "MinFilter",
3110 | "MinimalBy",
3111 | "MinimalPolynomial",
3112 | "MinimalStateSpaceModel",
3113 | "Minimize",
3114 | "MinimumTimeIncrement",
3115 | "MinIntervalSize",
3116 | "MinkowskiQuestionMark",
3117 | "MinLimit",
3118 | "MinMax",
3119 | "MinorPlanetData",
3120 | "Minors",
3121 | "MinPointSeparation",
3122 | "MinStableDistribution",
3123 | "Minus",
3124 | "MinusPlus",
3125 | "MinValue",
3126 | "Missing",
3127 | "MissingBehavior",
3128 | "MissingDataMethod",
3129 | "MissingDataRules",
3130 | "MissingQ",
3131 | "MissingString",
3132 | "MissingStyle",
3133 | "MittagLefflerE",
3134 | "MixedFractionParts",
3135 | "MixedGraphQ",
3136 | "MixedMagnitude",
3137 | "MixedRadix",
3138 | "MixedRadixQuantity",
3139 | "MixedUnit",
3140 | "MixtureDistribution",
3141 | "Mod",
3142 | "Modal",
3143 | "ModelPredictiveController",
3144 | "ModularInverse",
3145 | "ModularLambda",
3146 | "Module",
3147 | "Modulus",
3148 | "MoebiusMu",
3149 | "Moment",
3150 | "MomentConvert",
3151 | "MomentEvaluate",
3152 | "MomentGeneratingFunction",
3153 | "MomentOfInertia",
3154 | "Monday",
3155 | "Monitor",
3156 | "MonomialList",
3157 | "MonsterGroupM",
3158 | "MoonPhase",
3159 | "MoonPosition",
3160 | "MorletWavelet",
3161 | "MorphologicalBinarize",
3162 | "MorphologicalBranchPoints",
3163 | "MorphologicalComponents",
3164 | "MorphologicalEulerNumber",
3165 | "MorphologicalGraph",
3166 | "MorphologicalPerimeter",
3167 | "MorphologicalTransform",
3168 | "MortalityData",
3169 | "Most",
3170 | "MountainData",
3171 | "MouseAnnotation",
3172 | "MouseAppearance",
3173 | "Mouseover",
3174 | "MousePosition",
3175 | "MovieData",
3176 | "MovingAverage",
3177 | "MovingMap",
3178 | "MovingMedian",
3179 | "MoyalDistribution",
3180 | "MultiaxisArrangement",
3181 | "Multicolumn",
3182 | "MultiedgeStyle",
3183 | "MultigraphQ",
3184 | "MultilaunchWarning",
3185 | "MultilineFunction",
3186 | "Multinomial",
3187 | "MultinomialDistribution",
3188 | "MultinormalDistribution",
3189 | "MultiplicativeOrder",
3190 | "MultiplySides",
3191 | "Multiselection",
3192 | "MultivariateHypergeometricDistribution",
3193 | "MultivariatePoissonDistribution",
3194 | "MultivariateTDistribution",
3195 | "N",
3196 | "NakagamiDistribution",
3197 | "NameQ",
3198 | "Names",
3199 | "Nand",
3200 | "NArgMax",
3201 | "NArgMin",
3202 | "NCache",
3203 | "NCaputoD",
3204 | "NDEigensystem",
3205 | "NDEigenvalues",
3206 | "NDSolve",
3207 | "NDSolveValue",
3208 | "Nearest",
3209 | "NearestFunction",
3210 | "NearestMeshCells",
3211 | "NearestNeighborGraph",
3212 | "NearestTo",
3213 | "NebulaData",
3214 | "NeedlemanWunschSimilarity",
3215 | "Needs",
3216 | "Negative",
3217 | "NegativeBinomialDistribution",
3218 | "NegativeDefiniteMatrixQ",
3219 | "NegativeIntegers",
3220 | "NegativelyOrientedPoints",
3221 | "NegativeMultinomialDistribution",
3222 | "NegativeRationals",
3223 | "NegativeReals",
3224 | "NegativeSemidefiniteMatrixQ",
3225 | "NeighborhoodData",
3226 | "NeighborhoodGraph",
3227 | "Nest",
3228 | "NestedGreaterGreater",
3229 | "NestedLessLess",
3230 | "NestGraph",
3231 | "NestList",
3232 | "NestWhile",
3233 | "NestWhileList",
3234 | "NeumannValue",
3235 | "NevilleThetaC",
3236 | "NevilleThetaD",
3237 | "NevilleThetaN",
3238 | "NevilleThetaS",
3239 | "NExpectation",
3240 | "NextCell",
3241 | "NextDate",
3242 | "NextPrime",
3243 | "NFractionalD",
3244 | "NHoldAll",
3245 | "NHoldFirst",
3246 | "NHoldRest",
3247 | "NicholsGridLines",
3248 | "NicholsPlot",
3249 | "NightHemisphere",
3250 | "NIntegrate",
3251 | "NMaximize",
3252 | "NMaxValue",
3253 | "NMinimize",
3254 | "NMinValue",
3255 | "NominalVariables",
3256 | "NoncentralBetaDistribution",
3257 | "NoncentralChiSquareDistribution",
3258 | "NoncentralFRatioDistribution",
3259 | "NoncentralStudentTDistribution",
3260 | "NonCommutativeMultiply",
3261 | "NonConstants",
3262 | "NondimensionalizationTransform",
3263 | "None",
3264 | "NoneTrue",
3265 | "NonlinearModelFit",
3266 | "NonlinearStateSpaceModel",
3267 | "NonlocalMeansFilter",
3268 | "NonNegative",
3269 | "NonNegativeIntegers",
3270 | "NonNegativeRationals",
3271 | "NonNegativeReals",
3272 | "NonPositive",
3273 | "NonPositiveIntegers",
3274 | "NonPositiveRationals",
3275 | "NonPositiveReals",
3276 | "Nor",
3277 | "NorlundB",
3278 | "Norm",
3279 | "Normal",
3280 | "NormalDistribution",
3281 | "Normalize",
3282 | "Normalized",
3283 | "NormalizedSquaredEuclideanDistance",
3284 | "NormalMatrixQ",
3285 | "NormalsFunction",
3286 | "NormFunction",
3287 | "Not",
3288 | "NotCongruent",
3289 | "NotCupCap",
3290 | "NotDoubleVerticalBar",
3291 | "Notebook",
3292 | "NotebookApply",
3293 | "NotebookAutoSave",
3294 | "NotebookBrowseDirectory",
3295 | "NotebookClose",
3296 | "NotebookConvertSettings",
3297 | "NotebookDelete",
3298 | "NotebookDirectory",
3299 | "NotebookDynamicExpression",
3300 | "NotebookEvaluate",
3301 | "NotebookEventActions",
3302 | "NotebookFileName",
3303 | "NotebookFind",
3304 | "NotebookGet",
3305 | "NotebookImport",
3306 | "NotebookInformation",
3307 | "NotebookLocate",
3308 | "NotebookObject",
3309 | "NotebookOpen",
3310 | "NotebookPath",
3311 | "NotebookPrint",
3312 | "NotebookPut",
3313 | "NotebookRead",
3314 | "Notebooks",
3315 | "NotebookSave",
3316 | "NotebookSelection",
3317 | "NotebooksMenu",
3318 | "NotebookTemplate",
3319 | "NotebookWrite",
3320 | "NotElement",
3321 | "NotEqualTilde",
3322 | "NotExists",
3323 | "NotGreater",
3324 | "NotGreaterEqual",
3325 | "NotGreaterFullEqual",
3326 | "NotGreaterGreater",
3327 | "NotGreaterLess",
3328 | "NotGreaterSlantEqual",
3329 | "NotGreaterTilde",
3330 | "Nothing",
3331 | "NotHumpDownHump",
3332 | "NotHumpEqual",
3333 | "NotificationFunction",
3334 | "NotLeftTriangle",
3335 | "NotLeftTriangleBar",
3336 | "NotLeftTriangleEqual",
3337 | "NotLess",
3338 | "NotLessEqual",
3339 | "NotLessFullEqual",
3340 | "NotLessGreater",
3341 | "NotLessLess",
3342 | "NotLessSlantEqual",
3343 | "NotLessTilde",
3344 | "NotNestedGreaterGreater",
3345 | "NotNestedLessLess",
3346 | "NotPrecedes",
3347 | "NotPrecedesEqual",
3348 | "NotPrecedesSlantEqual",
3349 | "NotPrecedesTilde",
3350 | "NotReverseElement",
3351 | "NotRightTriangle",
3352 | "NotRightTriangleBar",
3353 | "NotRightTriangleEqual",
3354 | "NotSquareSubset",
3355 | "NotSquareSubsetEqual",
3356 | "NotSquareSuperset",
3357 | "NotSquareSupersetEqual",
3358 | "NotSubset",
3359 | "NotSubsetEqual",
3360 | "NotSucceeds",
3361 | "NotSucceedsEqual",
3362 | "NotSucceedsSlantEqual",
3363 | "NotSucceedsTilde",
3364 | "NotSuperset",
3365 | "NotSupersetEqual",
3366 | "NotTilde",
3367 | "NotTildeEqual",
3368 | "NotTildeFullEqual",
3369 | "NotTildeTilde",
3370 | "NotVerticalBar",
3371 | "Now",
3372 | "NoWhitespace",
3373 | "NProbability",
3374 | "NProduct",
3375 | "NRoots",
3376 | "NSolve",
3377 | "NSolveValues",
3378 | "NSum",
3379 | "NuclearExplosionData",
3380 | "NuclearReactorData",
3381 | "Null",
3382 | "NullRecords",
3383 | "NullSpace",
3384 | "NullWords",
3385 | "Number",
3386 | "NumberCompose",
3387 | "NumberDecompose",
3388 | "NumberDigit",
3389 | "NumberExpand",
3390 | "NumberFieldClassNumber",
3391 | "NumberFieldDiscriminant",
3392 | "NumberFieldFundamentalUnits",
3393 | "NumberFieldIntegralBasis",
3394 | "NumberFieldNormRepresentatives",
3395 | "NumberFieldRegulator",
3396 | "NumberFieldRootsOfUnity",
3397 | "NumberFieldSignature",
3398 | "NumberForm",
3399 | "NumberFormat",
3400 | "NumberLinePlot",
3401 | "NumberMarks",
3402 | "NumberMultiplier",
3403 | "NumberPadding",
3404 | "NumberPoint",
3405 | "NumberQ",
3406 | "NumberSeparator",
3407 | "NumberSigns",
3408 | "NumberString",
3409 | "Numerator",
3410 | "NumeratorDenominator",
3411 | "NumericalOrder",
3412 | "NumericalSort",
3413 | "NumericFunction",
3414 | "NumericQ",
3415 | "NuttallWindow",
3416 | "NyquistGridLines",
3417 | "NyquistPlot",
3418 | "O",
3419 | "ObservabilityGramian",
3420 | "ObservabilityMatrix",
3421 | "ObservableDecomposition",
3422 | "ObservableModelQ",
3423 | "OceanData",
3424 | "Octahedron",
3425 | "OddQ",
3426 | "Off",
3427 | "Offset",
3428 | "On",
3429 | "ONanGroupON",
3430 | "Once",
3431 | "OneIdentity",
3432 | "Opacity",
3433 | "OpacityFunction",
3434 | "OpacityFunctionScaling",
3435 | "OpenAppend",
3436 | "Opener",
3437 | "OpenerView",
3438 | "Opening",
3439 | "OpenRead",
3440 | "OpenWrite",
3441 | "Operate",
3442 | "OperatingSystem",
3443 | "OptimumFlowData",
3444 | "Optional",
3445 | "OptionalElement",
3446 | "OptionInspectorSettings",
3447 | "Options",
3448 | "OptionsPattern",
3449 | "OptionValue",
3450 | "Or",
3451 | "Orange",
3452 | "Order",
3453 | "OrderDistribution",
3454 | "OrderedQ",
3455 | "Ordering",
3456 | "OrderingBy",
3457 | "Orderless",
3458 | "OrderlessPatternSequence",
3459 | "OrnsteinUhlenbeckProcess",
3460 | "Orthogonalize",
3461 | "OrthogonalMatrixQ",
3462 | "Outer",
3463 | "OuterPolygon",
3464 | "OuterPolyhedron",
3465 | "OutputAutoOverwrite",
3466 | "OutputControllabilityMatrix",
3467 | "OutputControllableModelQ",
3468 | "OutputForm",
3469 | "OutputNamePacket",
3470 | "OutputResponse",
3471 | "OutputSizeLimit",
3472 | "OutputStream",
3473 | "OverBar",
3474 | "OverDot",
3475 | "Overflow",
3476 | "OverHat",
3477 | "Overlaps",
3478 | "Overlay",
3479 | "Overscript",
3480 | "OverscriptBox",
3481 | "OverscriptBoxOptions",
3482 | "OverTilde",
3483 | "OverVector",
3484 | "OverwriteTarget",
3485 | "OwenT",
3486 | "OwnValues",
3487 | "PacletDataRebuild",
3488 | "PacletDirectoryLoad",
3489 | "PacletDirectoryUnload",
3490 | "PacletDisable",
3491 | "PacletEnable",
3492 | "PacletFind",
3493 | "PacletFindRemote",
3494 | "PacletInstall",
3495 | "PacletInstallSubmit",
3496 | "PacletNewerQ",
3497 | "PacletObject",
3498 | "PacletSite",
3499 | "PacletSiteObject",
3500 | "PacletSiteRegister",
3501 | "PacletSites",
3502 | "PacletSiteUnregister",
3503 | "PacletSiteUpdate",
3504 | "PacletUninstall",
3505 | "PaddedForm",
3506 | "Padding",
3507 | "PaddingSize",
3508 | "PadeApproximant",
3509 | "PadLeft",
3510 | "PadRight",
3511 | "PageBreakAbove",
3512 | "PageBreakBelow",
3513 | "PageBreakWithin",
3514 | "PageFooterLines",
3515 | "PageFooters",
3516 | "PageHeaderLines",
3517 | "PageHeaders",
3518 | "PageRankCentrality",
3519 | "PageTheme",
3520 | "PageWidth",
3521 | "PairedBarChart",
3522 | "PairedHistogram",
3523 | "PairedSmoothHistogram",
3524 | "PairedTTest",
3525 | "PairedZTest",
3526 | "PaletteNotebook",
3527 | "PalettePath",
3528 | "PalindromeQ",
3529 | "Pane",
3530 | "Panel",
3531 | "Paneled",
3532 | "PaneSelector",
3533 | "ParabolicCylinderD",
3534 | "ParagraphIndent",
3535 | "ParagraphSpacing",
3536 | "ParallelArray",
3537 | "ParallelAxisPlot",
3538 | "ParallelCombine",
3539 | "ParallelDo",
3540 | "Parallelepiped",
3541 | "ParallelEvaluate",
3542 | "Parallelization",
3543 | "Parallelize",
3544 | "ParallelKernels",
3545 | "ParallelMap",
3546 | "ParallelNeeds",
3547 | "Parallelogram",
3548 | "ParallelProduct",
3549 | "ParallelSubmit",
3550 | "ParallelSum",
3551 | "ParallelTable",
3552 | "ParallelTry",
3553 | "ParameterEstimator",
3554 | "ParameterMixtureDistribution",
3555 | "ParametricConvexOptimization",
3556 | "ParametricFunction",
3557 | "ParametricNDSolve",
3558 | "ParametricNDSolveValue",
3559 | "ParametricPlot",
3560 | "ParametricPlot3D",
3561 | "ParametricRegion",
3562 | "ParentBox",
3563 | "ParentCell",
3564 | "ParentDirectory",
3565 | "ParentNotebook",
3566 | "ParetoDistribution",
3567 | "ParetoPickandsDistribution",
3568 | "ParkData",
3569 | "Part",
3570 | "PartBehavior",
3571 | "PartialCorrelationFunction",
3572 | "ParticleAcceleratorData",
3573 | "ParticleData",
3574 | "Partition",
3575 | "PartitionGranularity",
3576 | "PartitionsP",
3577 | "PartitionsQ",
3578 | "PartOfSpeech",
3579 | "ParzenWindow",
3580 | "PascalDistribution",
3581 | "PassEventsDown",
3582 | "PassEventsUp",
3583 | "Paste",
3584 | "PasteBoxFormInlineCells",
3585 | "PasteButton",
3586 | "Path",
3587 | "PathGraph",
3588 | "PathGraphQ",
3589 | "Pattern",
3590 | "PatternSequence",
3591 | "PatternTest",
3592 | "PauliMatrix",
3593 | "PaulWavelet",
3594 | "Pause",
3595 | "PDF",
3596 | "PeakDetect",
3597 | "PeanoCurve",
3598 | "PearsonChiSquareTest",
3599 | "PearsonCorrelationTest",
3600 | "PearsonDistribution",
3601 | "PercentForm",
3602 | "PerfectNumber",
3603 | "PerfectNumberQ",
3604 | "PerformanceGoal",
3605 | "Perimeter",
3606 | "PeriodicBoundaryCondition",
3607 | "Periodogram",
3608 | "PeriodogramArray",
3609 | "Permanent",
3610 | "Permissions",
3611 | "PermissionsGroup",
3612 | "PermissionsGroupMemberQ",
3613 | "PermissionsGroups",
3614 | "PermissionsKey",
3615 | "PermissionsKeys",
3616 | "PermutationCycles",
3617 | "PermutationCyclesQ",
3618 | "PermutationGroup",
3619 | "PermutationLength",
3620 | "PermutationList",
3621 | "PermutationListQ",
3622 | "PermutationMatrix",
3623 | "PermutationMax",
3624 | "PermutationMin",
3625 | "PermutationOrder",
3626 | "PermutationPower",
3627 | "PermutationProduct",
3628 | "PermutationReplace",
3629 | "Permutations",
3630 | "PermutationSupport",
3631 | "Permute",
3632 | "PeronaMalikFilter",
3633 | "PersonData",
3634 | "PERTDistribution",
3635 | "PetersenGraph",
3636 | "PhaseMargins",
3637 | "PhaseRange",
3638 | "PhongShading",
3639 | "PhysicalSystemData",
3640 | "Pi",
3641 | "Pick",
3642 | "PIDDerivativeFilter",
3643 | "PIDFeedforward",
3644 | "PIDTune",
3645 | "Piecewise",
3646 | "PiecewiseExpand",
3647 | "PieChart",
3648 | "PieChart3D",
3649 | "PillaiTrace",
3650 | "PillaiTraceTest",
3651 | "PingTime",
3652 | "Pink",
3653 | "PixelValue",
3654 | "PixelValuePositions",
3655 | "Placed",
3656 | "Placeholder",
3657 | "PlaceholderReplace",
3658 | "Plain",
3659 | "PlanarAngle",
3660 | "PlanarFaceList",
3661 | "PlanarGraph",
3662 | "PlanarGraphQ",
3663 | "PlanckRadiationLaw",
3664 | "PlaneCurveData",
3665 | "PlanetaryMoonData",
3666 | "PlanetData",
3667 | "PlantData",
3668 | "Play",
3669 | "PlayRange",
3670 | "Plot",
3671 | "Plot3D",
3672 | "PlotLabel",
3673 | "PlotLabels",
3674 | "PlotLayout",
3675 | "PlotLegends",
3676 | "PlotMarkers",
3677 | "PlotPoints",
3678 | "PlotRange",
3679 | "PlotRangeClipping",
3680 | "PlotRangePadding",
3681 | "PlotRegion",
3682 | "PlotStyle",
3683 | "PlotTheme",
3684 | "Pluralize",
3685 | "Plus",
3686 | "PlusMinus",
3687 | "Pochhammer",
3688 | "PodStates",
3689 | "PodWidth",
3690 | "Point",
3691 | "PointFigureChart",
3692 | "PointLegend",
3693 | "PointLight",
3694 | "PointSize",
3695 | "PoissonConsulDistribution",
3696 | "PoissonDistribution",
3697 | "PoissonPDEComponent",
3698 | "PoissonProcess",
3699 | "PoissonWindow",
3700 | "PolarAxes",
3701 | "PolarAxesOrigin",
3702 | "PolarGridLines",
3703 | "PolarPlot",
3704 | "PolarTicks",
3705 | "PoleZeroMarkers",
3706 | "PolyaAeppliDistribution",
3707 | "PolyGamma",
3708 | "Polygon",
3709 | "PolygonalNumber",
3710 | "PolygonAngle",
3711 | "PolygonCoordinates",
3712 | "PolygonDecomposition",
3713 | "Polyhedron",
3714 | "PolyhedronAngle",
3715 | "PolyhedronCoordinates",
3716 | "PolyhedronData",
3717 | "PolyhedronDecomposition",
3718 | "PolyhedronGenus",
3719 | "PolyLog",
3720 | "PolynomialExpressionQ",
3721 | "PolynomialExtendedGCD",
3722 | "PolynomialGCD",
3723 | "PolynomialLCM",
3724 | "PolynomialMod",
3725 | "PolynomialQ",
3726 | "PolynomialQuotient",
3727 | "PolynomialQuotientRemainder",
3728 | "PolynomialReduce",
3729 | "PolynomialRemainder",
3730 | "PolynomialSumOfSquaresList",
3731 | "PopupMenu",
3732 | "PopupView",
3733 | "PopupWindow",
3734 | "Position",
3735 | "PositionIndex",
3736 | "PositionLargest",
3737 | "PositionSmallest",
3738 | "Positive",
3739 | "PositiveDefiniteMatrixQ",
3740 | "PositiveIntegers",
3741 | "PositivelyOrientedPoints",
3742 | "PositiveRationals",
3743 | "PositiveReals",
3744 | "PositiveSemidefiniteMatrixQ",
3745 | "PossibleZeroQ",
3746 | "Postfix",
3747 | "Power",
3748 | "PowerDistribution",
3749 | "PowerExpand",
3750 | "PowerMod",
3751 | "PowerModList",
3752 | "PowerRange",
3753 | "PowerSpectralDensity",
3754 | "PowersRepresentations",
3755 | "PowerSymmetricPolynomial",
3756 | "PrecedenceForm",
3757 | "Precedes",
3758 | "PrecedesEqual",
3759 | "PrecedesSlantEqual",
3760 | "PrecedesTilde",
3761 | "Precision",
3762 | "PrecisionGoal",
3763 | "PreDecrement",
3764 | "Predict",
3765 | "PredictorFunction",
3766 | "PredictorMeasurements",
3767 | "PredictorMeasurementsObject",
3768 | "PreemptProtect",
3769 | "PreferencesPath",
3770 | "Prefix",
3771 | "PreIncrement",
3772 | "Prepend",
3773 | "PrependTo",
3774 | "PreprocessingRules",
3775 | "PreserveColor",
3776 | "PreserveImageOptions",
3777 | "PreviousCell",
3778 | "PreviousDate",
3779 | "PriceGraphDistribution",
3780 | "Prime",
3781 | "PrimeNu",
3782 | "PrimeOmega",
3783 | "PrimePi",
3784 | "PrimePowerQ",
3785 | "PrimeQ",
3786 | "Primes",
3787 | "PrimeZetaP",
3788 | "PrimitivePolynomialQ",
3789 | "PrimitiveRoot",
3790 | "PrimitiveRootList",
3791 | "PrincipalComponents",
3792 | "PrincipalValue",
3793 | "PrintableASCIIQ",
3794 | "PrintAction",
3795 | "PrintingCopies",
3796 | "PrintingOptions",
3797 | "PrintingPageRange",
3798 | "PrintingStartingPageNumber",
3799 | "PrintingStyleEnvironment",
3800 | "Printout3D",
3801 | "Printout3DPreviewer",
3802 | "PrintPrecision",
3803 | "PrintTemporary",
3804 | "Prism",
3805 | "PrivateCellOptions",
3806 | "PrivateEvaluationOptions",
3807 | "PrivateFontOptions",
3808 | "PrivateKey",
3809 | "PrivateNotebookOptions",
3810 | "PrivatePaths",
3811 | "Probability",
3812 | "ProbabilityDistribution",
3813 | "ProbabilityPlot",
3814 | "ProbabilityScalePlot",
3815 | "ProbitModelFit",
3816 | "ProcessConnection",
3817 | "ProcessDirectory",
3818 | "ProcessEnvironment",
3819 | "Processes",
3820 | "ProcessEstimator",
3821 | "ProcessInformation",
3822 | "ProcessObject",
3823 | "ProcessParameterAssumptions",
3824 | "ProcessParameterQ",
3825 | "ProcessStatus",
3826 | "Product",
3827 | "ProductDistribution",
3828 | "ProductLog",
3829 | "ProgressIndicator",
3830 | "ProgressReporting",
3831 | "Projection",
3832 | "Prolog",
3833 | "PropagateAborts",
3834 | "Proportion",
3835 | "Proportional",
3836 | "Protect",
3837 | "Protected",
3838 | "ProteinData",
3839 | "Pruning",
3840 | "PseudoInverse",
3841 | "PsychrometricPropertyData",
3842 | "PublicKey",
3843 | "PulsarData",
3844 | "PunctuationCharacter",
3845 | "Purple",
3846 | "Put",
3847 | "PutAppend",
3848 | "Pyramid",
3849 | "QBinomial",
3850 | "QFactorial",
3851 | "QGamma",
3852 | "QHypergeometricPFQ",
3853 | "QnDispersion",
3854 | "QPochhammer",
3855 | "QPolyGamma",
3856 | "QRDecomposition",
3857 | "QuadraticIrrationalQ",
3858 | "QuadraticOptimization",
3859 | "Quantile",
3860 | "QuantilePlot",
3861 | "Quantity",
3862 | "QuantityArray",
3863 | "QuantityDistribution",
3864 | "QuantityForm",
3865 | "QuantityMagnitude",
3866 | "QuantityQ",
3867 | "QuantityUnit",
3868 | "QuantityVariable",
3869 | "QuantityVariableCanonicalUnit",
3870 | "QuantityVariableDimensions",
3871 | "QuantityVariableIdentifier",
3872 | "QuantityVariablePhysicalQuantity",
3873 | "Quartics",
3874 | "QuartileDeviation",
3875 | "Quartiles",
3876 | "QuartileSkewness",
3877 | "Query",
3878 | "QueueingNetworkProcess",
3879 | "QueueingProcess",
3880 | "QueueProperties",
3881 | "Quiet",
3882 | "QuietEcho",
3883 | "Quotient",
3884 | "QuotientRemainder",
3885 | "RadialAxisPlot",
3886 | "RadialGradientFilling",
3887 | "RadialGradientImage",
3888 | "RadialityCentrality",
3889 | "RadicalBox",
3890 | "RadicalBoxOptions",
3891 | "RadioButton",
3892 | "RadioButtonBar",
3893 | "Radon",
3894 | "RadonTransform",
3895 | "RamanujanTau",
3896 | "RamanujanTauL",
3897 | "RamanujanTauTheta",
3898 | "RamanujanTauZ",
3899 | "Ramp",
3900 | "RandomChoice",
3901 | "RandomColor",
3902 | "RandomComplex",
3903 | "RandomDate",
3904 | "RandomEntity",
3905 | "RandomFunction",
3906 | "RandomGeneratorState",
3907 | "RandomGeoPosition",
3908 | "RandomGraph",
3909 | "RandomImage",
3910 | "RandomInteger",
3911 | "RandomPermutation",
3912 | "RandomPoint",
3913 | "RandomPolygon",
3914 | "RandomPolyhedron",
3915 | "RandomPrime",
3916 | "RandomReal",
3917 | "RandomSample",
3918 | "RandomSeeding",
3919 | "RandomTime",
3920 | "RandomVariate",
3921 | "RandomWalkProcess",
3922 | "RandomWord",
3923 | "Range",
3924 | "RangeFilter",
3925 | "RankedMax",
3926 | "RankedMin",
3927 | "RarerProbability",
3928 | "Raster",
3929 | "Raster3D",
3930 | "Rasterize",
3931 | "RasterSize",
3932 | "Rational",
3933 | "RationalExpressionQ",
3934 | "Rationalize",
3935 | "Rationals",
3936 | "Ratios",
3937 | "RawBoxes",
3938 | "RawData",
3939 | "RayleighDistribution",
3940 | "Re",
3941 | "ReactionPDETerm",
3942 | "Read",
3943 | "ReadByteArray",
3944 | "ReadLine",
3945 | "ReadList",
3946 | "ReadProtected",
3947 | "ReadString",
3948 | "Real",
3949 | "RealAbs",
3950 | "RealBlockDiagonalForm",
3951 | "RealDigits",
3952 | "RealExponent",
3953 | "Reals",
3954 | "RealSign",
3955 | "Reap",
3956 | "RecognitionPrior",
3957 | "ReconstructionMesh",
3958 | "Record",
3959 | "RecordLists",
3960 | "RecordSeparators",
3961 | "Rectangle",
3962 | "RectangleChart",
3963 | "RectangleChart3D",
3964 | "RectangularRepeatingElement",
3965 | "RecurrenceFilter",
3966 | "RecurrenceTable",
3967 | "Red",
3968 | "Reduce",
3969 | "ReferenceLineStyle",
3970 | "Refine",
3971 | "ReflectionMatrix",
3972 | "ReflectionTransform",
3973 | "Refresh",
3974 | "RefreshRate",
3975 | "Region",
3976 | "RegionBinarize",
3977 | "RegionBoundary",
3978 | "RegionBoundaryStyle",
3979 | "RegionBounds",
3980 | "RegionCentroid",
3981 | "RegionCongruent",
3982 | "RegionConvert",
3983 | "RegionDifference",
3984 | "RegionDilation",
3985 | "RegionDimension",
3986 | "RegionDisjoint",
3987 | "RegionDistance",
3988 | "RegionDistanceFunction",
3989 | "RegionEmbeddingDimension",
3990 | "RegionEqual",
3991 | "RegionErosion",
3992 | "RegionFillingStyle",
3993 | "RegionFit",
3994 | "RegionFunction",
3995 | "RegionImage",
3996 | "RegionIntersection",
3997 | "RegionMeasure",
3998 | "RegionMember",
3999 | "RegionMemberFunction",
4000 | "RegionMoment",
4001 | "RegionNearest",
4002 | "RegionNearestFunction",
4003 | "RegionPlot",
4004 | "RegionPlot3D",
4005 | "RegionProduct",
4006 | "RegionQ",
4007 | "RegionResize",
4008 | "RegionSimilar",
4009 | "RegionSize",
4010 | "RegionSymmetricDifference",
4011 | "RegionUnion",
4012 | "RegionWithin",
4013 | "RegularExpression",
4014 | "Regularization",
4015 | "RegularlySampledQ",
4016 | "RegularPolygon",
4017 | "ReIm",
4018 | "ReImLabels",
4019 | "ReImPlot",
4020 | "ReImStyle",
4021 | "RelationGraph",
4022 | "ReleaseHold",
4023 | "ReliabilityDistribution",
4024 | "ReliefImage",
4025 | "ReliefPlot",
4026 | "Remove",
4027 | "RemoveAlphaChannel",
4028 | "RemoveBackground",
4029 | "RemoveDiacritics",
4030 | "RemoveInputStreamMethod",
4031 | "RemoveOutputStreamMethod",
4032 | "RemoveUsers",
4033 | "RenameDirectory",
4034 | "RenameFile",
4035 | "RenderingOptions",
4036 | "RenewalProcess",
4037 | "RenkoChart",
4038 | "RepairMesh",
4039 | "Repeated",
4040 | "RepeatedNull",
4041 | "RepeatedTiming",
4042 | "RepeatingElement",
4043 | "Replace",
4044 | "ReplaceAll",
4045 | "ReplaceAt",
4046 | "ReplaceImageValue",
4047 | "ReplaceList",
4048 | "ReplacePart",
4049 | "ReplacePixelValue",
4050 | "ReplaceRepeated",
4051 | "RequiredPhysicalQuantities",
4052 | "Resampling",
4053 | "ResamplingAlgorithmData",
4054 | "ResamplingMethod",
4055 | "Rescale",
4056 | "RescalingTransform",
4057 | "ResetDirectory",
4058 | "Residue",
4059 | "ResidueSum",
4060 | "Resolve",
4061 | "ResolveContextAliases",
4062 | "ResourceData",
4063 | "ResourceObject",
4064 | "ResourceSearch",
4065 | "ResponseForm",
4066 | "Rest",
4067 | "RestartInterval",
4068 | "Restricted",
4069 | "Resultant",
4070 | "Return",
4071 | "ReturnExpressionPacket",
4072 | "ReturnPacket",
4073 | "ReturnReceiptFunction",
4074 | "ReturnTextPacket",
4075 | "Reverse",
4076 | "ReverseBiorthogonalSplineWavelet",
4077 | "ReverseElement",
4078 | "ReverseEquilibrium",
4079 | "ReverseGraph",
4080 | "ReverseSort",
4081 | "ReverseSortBy",
4082 | "ReverseUpEquilibrium",
4083 | "RevolutionAxis",
4084 | "RevolutionPlot3D",
4085 | "RGBColor",
4086 | "RiccatiSolve",
4087 | "RiceDistribution",
4088 | "RidgeFilter",
4089 | "RiemannR",
4090 | "RiemannSiegelTheta",
4091 | "RiemannSiegelZ",
4092 | "RiemannXi",
4093 | "Riffle",
4094 | "Right",
4095 | "RightArrow",
4096 | "RightArrowBar",
4097 | "RightArrowLeftArrow",
4098 | "RightComposition",
4099 | "RightCosetRepresentative",
4100 | "RightDownTeeVector",
4101 | "RightDownVector",
4102 | "RightDownVectorBar",
4103 | "RightTee",
4104 | "RightTeeArrow",
4105 | "RightTeeVector",
4106 | "RightTriangle",
4107 | "RightTriangleBar",
4108 | "RightTriangleEqual",
4109 | "RightUpDownVector",
4110 | "RightUpTeeVector",
4111 | "RightUpVector",
4112 | "RightUpVectorBar",
4113 | "RightVector",
4114 | "RightVectorBar",
4115 | "RiskAchievementImportance",
4116 | "RiskReductionImportance",
4117 | "RobustConvexOptimization",
4118 | "RogersTanimotoDissimilarity",
4119 | "RollPitchYawAngles",
4120 | "RollPitchYawMatrix",
4121 | "RomanNumeral",
4122 | "Root",
4123 | "RootApproximant",
4124 | "RootIntervals",
4125 | "RootLocusPlot",
4126 | "RootMeanSquare",
4127 | "RootOfUnityQ",
4128 | "RootReduce",
4129 | "Roots",
4130 | "RootSum",
4131 | "Rotate",
4132 | "RotateLabel",
4133 | "RotateLeft",
4134 | "RotateRight",
4135 | "RotationAction",
4136 | "RotationMatrix",
4137 | "RotationTransform",
4138 | "Round",
4139 | "RoundingRadius",
4140 | "Row",
4141 | "RowAlignments",
4142 | "RowBox",
4143 | "RowLines",
4144 | "RowMinHeight",
4145 | "RowReduce",
4146 | "RowsEqual",
4147 | "RowSpacings",
4148 | "RSolve",
4149 | "RSolveValue",
4150 | "RudinShapiro",
4151 | "RudvalisGroupRu",
4152 | "Rule",
4153 | "RuleDelayed",
4154 | "RulePlot",
4155 | "RulerUnits",
4156 | "Run",
4157 | "RunProcess",
4158 | "RunThrough",
4159 | "RuntimeAttributes",
4160 | "RuntimeOptions",
4161 | "RussellRaoDissimilarity",
4162 | "SameAs",
4163 | "SameQ",
4164 | "SameTest",
4165 | "SampleDepth",
4166 | "SampledSoundFunction",
4167 | "SampledSoundList",
4168 | "SampleRate",
4169 | "SamplingPeriod",
4170 | "SARIMAProcess",
4171 | "SARMAProcess",
4172 | "SASTriangle",
4173 | "SatelliteData",
4174 | "SatisfiabilityCount",
4175 | "SatisfiabilityInstances",
4176 | "SatisfiableQ",
4177 | "Saturday",
4178 | "Save",
4179 | "Saveable",
4180 | "SaveConnection",
4181 | "SaveDefinitions",
4182 | "SavitzkyGolayMatrix",
4183 | "SawtoothWave",
4184 | "Scale",
4185 | "Scaled",
4186 | "ScaleDivisions",
4187 | "ScaleOrigin",
4188 | "ScalePadding",
4189 | "ScaleRanges",
4190 | "ScaleRangeStyle",
4191 | "ScalingFunctions",
4192 | "ScalingMatrix",
4193 | "ScalingTransform",
4194 | "Scan",
4195 | "ScheduledTask",
4196 | "SchurDecomposition",
4197 | "ScientificForm",
4198 | "ScientificNotationThreshold",
4199 | "ScorerGi",
4200 | "ScorerGiPrime",
4201 | "ScorerHi",
4202 | "ScorerHiPrime",
4203 | "ScreenStyleEnvironment",
4204 | "ScriptBaselineShifts",
4205 | "ScriptLevel",
4206 | "ScriptMinSize",
4207 | "ScriptSizeMultipliers",
4208 | "Scrollbars",
4209 | "ScrollingOptions",
4210 | "ScrollPosition",
4211 | "Sec",
4212 | "Sech",
4213 | "SechDistribution",
4214 | "SecondOrderConeOptimization",
4215 | "SectorChart",
4216 | "SectorChart3D",
4217 | "SectorOrigin",
4218 | "SectorSpacing",
4219 | "SeedRandom",
4220 | "Select",
4221 | "Selectable",
4222 | "SelectComponents",
4223 | "SelectedCells",
4224 | "SelectedNotebook",
4225 | "SelectFirst",
4226 | "SelectionCreateCell",
4227 | "SelectionEvaluate",
4228 | "SelectionEvaluateCreateCell",
4229 | "SelectionMove",
4230 | "SelfLoopStyle",
4231 | "SemanticImport",
4232 | "SemanticImportString",
4233 | "SemanticInterpretation",
4234 | "SemialgebraicComponentInstances",
4235 | "SemidefiniteOptimization",
4236 | "SendMail",
4237 | "SendMessage",
4238 | "Sequence",
4239 | "SequenceAlignment",
4240 | "SequenceCases",
4241 | "SequenceCount",
4242 | "SequenceFold",
4243 | "SequenceFoldList",
4244 | "SequenceHold",
4245 | "SequencePosition",
4246 | "SequenceReplace",
4247 | "SequenceSplit",
4248 | "Series",
4249 | "SeriesCoefficient",
4250 | "SeriesData",
4251 | "SeriesTermGoal",
4252 | "ServiceConnect",
4253 | "ServiceDisconnect",
4254 | "ServiceExecute",
4255 | "ServiceObject",
4256 | "SessionSubmit",
4257 | "SessionTime",
4258 | "Set",
4259 | "SetAccuracy",
4260 | "SetAlphaChannel",
4261 | "SetAttributes",
4262 | "SetCloudDirectory",
4263 | "SetCookies",
4264 | "SetDelayed",
4265 | "SetDirectory",
4266 | "SetEnvironment",
4267 | "SetFileDate",
4268 | "SetOptions",
4269 | "SetPermissions",
4270 | "SetPrecision",
4271 | "SetSelectedNotebook",
4272 | "SetSharedFunction",
4273 | "SetSharedVariable",
4274 | "SetStreamPosition",
4275 | "SetSystemOptions",
4276 | "Setter",
4277 | "SetterBar",
4278 | "Setting",
4279 | "SetUsers",
4280 | "Shallow",
4281 | "ShannonWavelet",
4282 | "ShapiroWilkTest",
4283 | "Share",
4284 | "SharingList",
4285 | "Sharpen",
4286 | "ShearingMatrix",
4287 | "ShearingTransform",
4288 | "ShellRegion",
4289 | "ShenCastanMatrix",
4290 | "ShiftedGompertzDistribution",
4291 | "ShiftRegisterSequence",
4292 | "Short",
4293 | "ShortDownArrow",
4294 | "Shortest",
4295 | "ShortestPathFunction",
4296 | "ShortLeftArrow",
4297 | "ShortRightArrow",
4298 | "ShortTimeFourier",
4299 | "ShortTimeFourierData",
4300 | "ShortUpArrow",
4301 | "Show",
4302 | "ShowAutoSpellCheck",
4303 | "ShowAutoStyles",
4304 | "ShowCellBracket",
4305 | "ShowCellLabel",
4306 | "ShowCellTags",
4307 | "ShowClosedCellArea",
4308 | "ShowContents",
4309 | "ShowCursorTracker",
4310 | "ShowGroupOpener",
4311 | "ShowPageBreaks",
4312 | "ShowSelection",
4313 | "ShowShortBoxForm",
4314 | "ShowSpecialCharacters",
4315 | "ShowStringCharacters",
4316 | "ShrinkingDelay",
4317 | "SiderealTime",
4318 | "SiegelTheta",
4319 | "SiegelTukeyTest",
4320 | "SierpinskiCurve",
4321 | "SierpinskiMesh",
4322 | "Sign",
4323 | "Signature",
4324 | "SignedRankTest",
4325 | "SignedRegionDistance",
4326 | "SignificanceLevel",
4327 | "SignPadding",
4328 | "SignTest",
4329 | "SimilarityRules",
4330 | "SimpleGraph",
4331 | "SimpleGraphQ",
4332 | "SimplePolygonQ",
4333 | "SimplePolyhedronQ",
4334 | "Simplex",
4335 | "Simplify",
4336 | "Sin",
4337 | "Sinc",
4338 | "SinghMaddalaDistribution",
4339 | "SingleLetterItalics",
4340 | "SingularValueDecomposition",
4341 | "SingularValueList",
4342 | "SingularValuePlot",
4343 | "Sinh",
4344 | "SinhIntegral",
4345 | "SinIntegral",
4346 | "SixJSymbol",
4347 | "Skeleton",
4348 | "SkeletonTransform",
4349 | "SkellamDistribution",
4350 | "Skewness",
4351 | "SkewNormalDistribution",
4352 | "Skip",
4353 | "SliceContourPlot3D",
4354 | "SliceDensityPlot3D",
4355 | "SliceDistribution",
4356 | "SliceVectorPlot3D",
4357 | "Slider",
4358 | "Slider2D",
4359 | "SliderBox",
4360 | "SliderBoxOptions",
4361 | "SlideView",
4362 | "Slot",
4363 | "SlotSequence",
4364 | "Small",
4365 | "SmallCircle",
4366 | "Smaller",
4367 | "SmithDecomposition",
4368 | "SmithDelayCompensator",
4369 | "SmithWatermanSimilarity",
4370 | "SmoothDensityHistogram",
4371 | "SmoothHistogram",
4372 | "SmoothHistogram3D",
4373 | "SmoothKernelDistribution",
4374 | "SnDispersion",
4375 | "SocketConnect",
4376 | "SocketListen",
4377 | "SocketListener",
4378 | "SocketObject",
4379 | "SocketOpen",
4380 | "SocketReadMessage",
4381 | "SocketReadyQ",
4382 | "Sockets",
4383 | "SocketWaitAll",
4384 | "SocketWaitNext",
4385 | "SokalSneathDissimilarity",
4386 | "SolarEclipse",
4387 | "SolarSystemFeatureData",
4388 | "SolarTime",
4389 | "SolidAngle",
4390 | "SolidData",
4391 | "SolidRegionQ",
4392 | "Solve",
4393 | "SolveAlways",
4394 | "SolveValues",
4395 | "Sort",
4396 | "SortBy",
4397 | "SortedBy",
4398 | "Sound",
4399 | "SoundNote",
4400 | "SoundVolume",
4401 | "SourcePDETerm",
4402 | "Sow",
4403 | "SpaceCurveData",
4404 | "Spacer",
4405 | "Spacings",
4406 | "Span",
4407 | "SpanAdjustments",
4408 | "SpanCharacterRounding",
4409 | "SpanFromAbove",
4410 | "SpanFromBoth",
4411 | "SpanFromLeft",
4412 | "SpanLineThickness",
4413 | "SpanMaxSize",
4414 | "SpanMinSize",
4415 | "SpanSymmetric",
4416 | "SparseArray",
4417 | "SparseArrayQ",
4418 | "SpatialGraphDistribution",
4419 | "SpatialMedian",
4420 | "Speak",
4421 | "SpearmanRankTest",
4422 | "SpearmanRho",
4423 | "SpeciesData",
4424 | "SpecificityGoal",
4425 | "SpectralLineData",
4426 | "Spectrogram",
4427 | "SpectrogramArray",
4428 | "Specularity",
4429 | "SpeechSynthesize",
4430 | "SpellingCorrection",
4431 | "SpellingCorrectionList",
4432 | "SpellingDictionaries",
4433 | "SpellingDictionariesPath",
4434 | "SpellingOptions",
4435 | "Sphere",
4436 | "SpherePoints",
4437 | "SphericalBesselJ",
4438 | "SphericalBesselY",
4439 | "SphericalHankelH1",
4440 | "SphericalHankelH2",
4441 | "SphericalHarmonicY",
4442 | "SphericalPlot3D",
4443 | "SphericalRegion",
4444 | "SphericalShell",
4445 | "SpheroidalEigenvalue",
4446 | "SpheroidalJoiningFactor",
4447 | "SpheroidalPS",
4448 | "SpheroidalPSPrime",
4449 | "SpheroidalQS",
4450 | "SpheroidalQSPrime",
4451 | "SpheroidalRadialFactor",
4452 | "SpheroidalS1",
4453 | "SpheroidalS1Prime",
4454 | "SpheroidalS2",
4455 | "SpheroidalS2Prime",
4456 | "SplicedDistribution",
4457 | "SplineClosed",
4458 | "SplineDegree",
4459 | "SplineKnots",
4460 | "SplineWeights",
4461 | "Split",
4462 | "SplitBy",
4463 | "SpokenString",
4464 | "SpotLight",
4465 | "Sqrt",
4466 | "SqrtBox",
4467 | "SqrtBoxOptions",
4468 | "Square",
4469 | "SquaredEuclideanDistance",
4470 | "SquareFreeQ",
4471 | "SquareIntersection",
4472 | "SquareMatrixQ",
4473 | "SquareRepeatingElement",
4474 | "SquaresR",
4475 | "SquareSubset",
4476 | "SquareSubsetEqual",
4477 | "SquareSuperset",
4478 | "SquareSupersetEqual",
4479 | "SquareUnion",
4480 | "SquareWave",
4481 | "SSSTriangle",
4482 | "StabilityMargins",
4483 | "StabilityMarginsStyle",
4484 | "StableDistribution",
4485 | "Stack",
4486 | "StackBegin",
4487 | "StackComplete",
4488 | "StackedDateListPlot",
4489 | "StackedListPlot",
4490 | "StackInhibit",
4491 | "StadiumShape",
4492 | "StandardAtmosphereData",
4493 | "StandardDeviation",
4494 | "StandardDeviationFilter",
4495 | "StandardForm",
4496 | "Standardize",
4497 | "Standardized",
4498 | "StandardOceanData",
4499 | "StandbyDistribution",
4500 | "Star",
4501 | "StarClusterData",
4502 | "StarData",
4503 | "StarGraph",
4504 | "StartingStepSize",
4505 | "StartOfLine",
4506 | "StartOfString",
4507 | "StartProcess",
4508 | "StateFeedbackGains",
4509 | "StateOutputEstimator",
4510 | "StateResponse",
4511 | "StateSpaceModel",
4512 | "StateSpaceRealization",
4513 | "StateSpaceTransform",
4514 | "StateTransformationLinearize",
4515 | "StationaryDistribution",
4516 | "StationaryWaveletPacketTransform",
4517 | "StationaryWaveletTransform",
4518 | "StatusArea",
4519 | "StatusCentrality",
4520 | "StepMonitor",
4521 | "StieltjesGamma",
4522 | "StippleShading",
4523 | "StirlingS1",
4524 | "StirlingS2",
4525 | "StoppingPowerData",
4526 | "StrataVariables",
4527 | "StratonovichProcess",
4528 | "StreamColorFunction",
4529 | "StreamColorFunctionScaling",
4530 | "StreamDensityPlot",
4531 | "StreamMarkers",
4532 | "StreamPlot",
4533 | "StreamPlot3D",
4534 | "StreamPoints",
4535 | "StreamPosition",
4536 | "Streams",
4537 | "StreamScale",
4538 | "StreamStyle",
4539 | "StrictInequalities",
4540 | "String",
4541 | "StringCases",
4542 | "StringContainsQ",
4543 | "StringCount",
4544 | "StringDelete",
4545 | "StringDrop",
4546 | "StringEndsQ",
4547 | "StringExpression",
4548 | "StringExtract",
4549 | "StringForm",
4550 | "StringFormat",
4551 | "StringFormatQ",
4552 | "StringFreeQ",
4553 | "StringInsert",
4554 | "StringJoin",
4555 | "StringLength",
4556 | "StringMatchQ",
4557 | "StringPadLeft",
4558 | "StringPadRight",
4559 | "StringPart",
4560 | "StringPartition",
4561 | "StringPosition",
4562 | "StringQ",
4563 | "StringRepeat",
4564 | "StringReplace",
4565 | "StringReplaceList",
4566 | "StringReplacePart",
4567 | "StringReverse",
4568 | "StringRiffle",
4569 | "StringRotateLeft",
4570 | "StringRotateRight",
4571 | "StringSkeleton",
4572 | "StringSplit",
4573 | "StringStartsQ",
4574 | "StringTake",
4575 | "StringTakeDrop",
4576 | "StringTemplate",
4577 | "StringToByteArray",
4578 | "StringToStream",
4579 | "StringTrim",
4580 | "StripBoxes",
4581 | "StripOnInput",
4582 | "StripWrapperBoxes",
4583 | "Struckthrough",
4584 | "StructuralImportance",
4585 | "StructuredSelection",
4586 | "StruveH",
4587 | "StruveL",
4588 | "Stub",
4589 | "StudentTDistribution",
4590 | "Style",
4591 | "StyleBox",
4592 | "StyleBoxAutoDelete",
4593 | "StyleData",
4594 | "StyleDefinitions",
4595 | "StyleHints",
4596 | "StyleMenuListing",
4597 | "StyleNameDialogSettings",
4598 | "StyleSheetPath",
4599 | "Subdivide",
4600 | "Subfactorial",
4601 | "Subgraph",
4602 | "SubMinus",
4603 | "SubPlus",
4604 | "SubresultantPolynomialRemainders",
4605 | "SubresultantPolynomials",
4606 | "Subresultants",
4607 | "Subscript",
4608 | "SubscriptBox",
4609 | "SubscriptBoxOptions",
4610 | "Subsequences",
4611 | "Subset",
4612 | "SubsetEqual",
4613 | "SubsetMap",
4614 | "SubsetQ",
4615 | "Subsets",
4616 | "SubStar",
4617 | "SubstitutionSystem",
4618 | "Subsuperscript",
4619 | "SubsuperscriptBox",
4620 | "SubsuperscriptBoxOptions",
4621 | "SubtitleEncoding",
4622 | "Subtract",
4623 | "SubtractFrom",
4624 | "SubtractSides",
4625 | "SubValues",
4626 | "Succeeds",
4627 | "SucceedsEqual",
4628 | "SucceedsSlantEqual",
4629 | "SucceedsTilde",
4630 | "Success",
4631 | "SuchThat",
4632 | "Sum",
4633 | "SumConvergence",
4634 | "Sunday",
4635 | "SunPosition",
4636 | "Sunrise",
4637 | "Sunset",
4638 | "SuperDagger",
4639 | "SuperMinus",
4640 | "SupernovaData",
4641 | "SuperPlus",
4642 | "Superscript",
4643 | "SuperscriptBox",
4644 | "SuperscriptBoxOptions",
4645 | "Superset",
4646 | "SupersetEqual",
4647 | "SuperStar",
4648 | "Surd",
4649 | "SurdForm",
4650 | "SurfaceArea",
4651 | "SurfaceData",
4652 | "SurvivalDistribution",
4653 | "SurvivalFunction",
4654 | "SurvivalModel",
4655 | "SurvivalModelFit",
4656 | "SuzukiDistribution",
4657 | "SuzukiGroupSuz",
4658 | "SwatchLegend",
4659 | "Switch",
4660 | "Symbol",
4661 | "SymbolName",
4662 | "SymletWavelet",
4663 | "Symmetric",
4664 | "SymmetricGroup",
4665 | "SymmetricKey",
4666 | "SymmetricMatrixQ",
4667 | "SymmetricPolynomial",
4668 | "SymmetricReduction",
4669 | "Symmetrize",
4670 | "SymmetrizedArray",
4671 | "SymmetrizedArrayRules",
4672 | "SymmetrizedDependentComponents",
4673 | "SymmetrizedIndependentComponents",
4674 | "SymmetrizedReplacePart",
4675 | "SynchronousInitialization",
4676 | "SynchronousUpdating",
4677 | "Synonyms",
4678 | "SyntaxForm",
4679 | "SyntaxInformation",
4680 | "SyntaxLength",
4681 | "SyntaxPacket",
4682 | "SyntaxQ",
4683 | "SystemDialogInput",
4684 | "SystemHelpPath",
4685 | "SystemInformation",
4686 | "SystemOpen",
4687 | "SystemOptions",
4688 | "SystemProcessData",
4689 | "SystemProcesses",
4690 | "SystemsConnectionsModel",
4691 | "SystemsModelControllerData",
4692 | "SystemsModelDelay",
4693 | "SystemsModelDelayApproximate",
4694 | "SystemsModelDelete",
4695 | "SystemsModelDimensions",
4696 | "SystemsModelExtract",
4697 | "SystemsModelFeedbackConnect",
4698 | "SystemsModelLabels",
4699 | "SystemsModelLinearity",
4700 | "SystemsModelMerge",
4701 | "SystemsModelOrder",
4702 | "SystemsModelParallelConnect",
4703 | "SystemsModelSeriesConnect",
4704 | "SystemsModelStateFeedbackConnect",
4705 | "SystemsModelVectorRelativeOrders",
4706 | "TabFilling",
4707 | "Table",
4708 | "TableAlignments",
4709 | "TableDepth",
4710 | "TableDirections",
4711 | "TableForm",
4712 | "TableHeadings",
4713 | "TableSpacing",
4714 | "TabSpacings",
4715 | "TabView",
4716 | "TagBox",
4717 | "TagBoxOptions",
4718 | "TaggingRules",
4719 | "TagSet",
4720 | "TagSetDelayed",
4721 | "TagUnset",
4722 | "Take",
4723 | "TakeDrop",
4724 | "TakeLargest",
4725 | "TakeLargestBy",
4726 | "TakeList",
4727 | "TakeSmallest",
4728 | "TakeSmallestBy",
4729 | "TakeWhile",
4730 | "Tally",
4731 | "Tan",
4732 | "Tanh",
4733 | "TargetFunctions",
4734 | "TargetUnits",
4735 | "TaskAbort",
4736 | "TaskExecute",
4737 | "TaskObject",
4738 | "TaskRemove",
4739 | "TaskResume",
4740 | "Tasks",
4741 | "TaskSuspend",
4742 | "TaskWait",
4743 | "TautologyQ",
4744 | "TelegraphProcess",
4745 | "TemplateApply",
4746 | "TemplateBox",
4747 | "TemplateBoxOptions",
4748 | "TemplateExpression",
4749 | "TemplateIf",
4750 | "TemplateObject",
4751 | "TemplateSequence",
4752 | "TemplateSlot",
4753 | "TemplateWith",
4754 | "TemporalData",
4755 | "TemporalRegularity",
4756 | "Temporary",
4757 | "TensorContract",
4758 | "TensorDimensions",
4759 | "TensorExpand",
4760 | "TensorProduct",
4761 | "TensorRank",
4762 | "TensorReduce",
4763 | "TensorSymmetry",
4764 | "TensorTranspose",
4765 | "TensorWedge",
4766 | "TerminatedEvaluation",
4767 | "TestID",
4768 | "TestReport",
4769 | "TestReportObject",
4770 | "TestResultObject",
4771 | "Tetrahedron",
4772 | "TeXForm",
4773 | "Text",
4774 | "TextAlignment",
4775 | "TextCell",
4776 | "TextClipboardType",
4777 | "TextData",
4778 | "TextGrid",
4779 | "TextJustification",
4780 | "TextPacket",
4781 | "TextRecognize",
4782 | "TextSentences",
4783 | "TextString",
4784 | "TextTranslation",
4785 | "Texture",
4786 | "TextureCoordinateFunction",
4787 | "TextureCoordinateScaling",
4788 | "TextWords",
4789 | "Therefore",
4790 | "ThermodynamicData",
4791 | "ThermometerGauge",
4792 | "Thick",
4793 | "Thickness",
4794 | "Thin",
4795 | "Thinning",
4796 | "ThompsonGroupTh",
4797 | "Thread",
4798 | "ThreeJSymbol",
4799 | "Threshold",
4800 | "Through",
4801 | "Throw",
4802 | "ThueMorse",
4803 | "Thumbnail",
4804 | "Thursday",
4805 | "Ticks",
4806 | "TicksStyle",
4807 | "TideData",
4808 | "Tilde",
4809 | "TildeEqual",
4810 | "TildeFullEqual",
4811 | "TildeTilde",
4812 | "TimeConstrained",
4813 | "TimeConstraint",
4814 | "TimeDirection",
4815 | "TimeFormat",
4816 | "TimeGoal",
4817 | "TimelinePlot",
4818 | "TimeObject",
4819 | "TimeObjectQ",
4820 | "TimeRemaining",
4821 | "Times",
4822 | "TimesBy",
4823 | "TimeSeries",
4824 | "TimeSeriesAggregate",
4825 | "TimeSeriesForecast",
4826 | "TimeSeriesInsert",
4827 | "TimeSeriesInvertibility",
4828 | "TimeSeriesMap",
4829 | "TimeSeriesMapThread",
4830 | "TimeSeriesModel",
4831 | "TimeSeriesModelFit",
4832 | "TimeSeriesResample",
4833 | "TimeSeriesRescale",
4834 | "TimeSeriesShift",
4835 | "TimeSeriesThread",
4836 | "TimeSeriesWindow",
4837 | "TimeSystem",
4838 | "TimeSystemConvert",
4839 | "TimeUsed",
4840 | "TimeValue",
4841 | "TimeZone",
4842 | "TimeZoneConvert",
4843 | "TimeZoneOffset",
4844 | "Timing",
4845 | "Tiny",
4846 | "TitsGroupT",
4847 | "ToBoxes",
4848 | "ToCharacterCode",
4849 | "ToContinuousTimeModel",
4850 | "Today",
4851 | "ToDiscreteTimeModel",
4852 | "ToEntity",
4853 | "ToeplitzMatrix",
4854 | "ToExpression",
4855 | "Together",
4856 | "Toggler",
4857 | "TogglerBar",
4858 | "ToInvertibleTimeSeries",
4859 | "TokenWords",
4860 | "Tolerance",
4861 | "ToLowerCase",
4862 | "Tomorrow",
4863 | "ToNumberField",
4864 | "Tooltip",
4865 | "TooltipDelay",
4866 | "TooltipStyle",
4867 | "ToonShading",
4868 | "Top",
4869 | "TopHatTransform",
4870 | "ToPolarCoordinates",
4871 | "TopologicalSort",
4872 | "ToRadicals",
4873 | "ToRules",
4874 | "Torus",
4875 | "TorusGraph",
4876 | "ToSphericalCoordinates",
4877 | "ToString",
4878 | "Total",
4879 | "TotalVariationFilter",
4880 | "TotalWidth",
4881 | "TouchPosition",
4882 | "TouchscreenAutoZoom",
4883 | "TouchscreenControlPlacement",
4884 | "ToUpperCase",
4885 | "Tr",
4886 | "Trace",
4887 | "TraceAbove",
4888 | "TraceBackward",
4889 | "TraceDepth",
4890 | "TraceDialog",
4891 | "TraceForward",
4892 | "TraceOff",
4893 | "TraceOn",
4894 | "TraceOriginal",
4895 | "TracePrint",
4896 | "TraceScan",
4897 | "TrackedSymbols",
4898 | "TrackingFunction",
4899 | "TracyWidomDistribution",
4900 | "TradingChart",
4901 | "TraditionalForm",
4902 | "TraditionalFunctionNotation",
4903 | "TransferFunctionCancel",
4904 | "TransferFunctionExpand",
4905 | "TransferFunctionFactor",
4906 | "TransferFunctionModel",
4907 | "TransferFunctionPoles",
4908 | "TransferFunctionTransform",
4909 | "TransferFunctionZeros",
4910 | "TransformationClass",
4911 | "TransformationFunction",
4912 | "TransformationFunctions",
4913 | "TransformationMatrix",
4914 | "TransformedDistribution",
4915 | "TransformedField",
4916 | "TransformedProcess",
4917 | "TransformedRegion",
4918 | "TransitionDirection",
4919 | "TransitionDuration",
4920 | "TransitionEffect",
4921 | "TransitiveClosureGraph",
4922 | "TransitiveReductionGraph",
4923 | "Translate",
4924 | "TranslationOptions",
4925 | "TranslationTransform",
4926 | "Transliterate",
4927 | "Transparent",
4928 | "Transpose",
4929 | "TravelDirections",
4930 | "TravelDirectionsData",
4931 | "TravelDistance",
4932 | "TravelDistanceList",
4933 | "TravelMethod",
4934 | "TravelTime",
4935 | "TreeForm",
4936 | "TreeGraph",
4937 | "TreeGraphQ",
4938 | "TreePlot",
4939 | "TrendStyle",
4940 | "Triangle",
4941 | "TriangleWave",
4942 | "TriangularDistribution",
4943 | "TriangulateMesh",
4944 | "Trig",
4945 | "TrigExpand",
4946 | "TrigFactor",
4947 | "TrigFactorList",
4948 | "Trigger",
4949 | "TrigReduce",
4950 | "TrigToExp",
4951 | "TrimmedMean",
4952 | "TrimmedVariance",
4953 | "TropicalStormData",
4954 | "True",
4955 | "TrueQ",
4956 | "TruncatedDistribution",
4957 | "TruncatedPolyhedron",
4958 | "TsallisQExponentialDistribution",
4959 | "TsallisQGaussianDistribution",
4960 | "TTest",
4961 | "Tube",
4962 | "Tuesday",
4963 | "TukeyLambdaDistribution",
4964 | "TukeyWindow",
4965 | "TunnelData",
4966 | "Tuples",
4967 | "TuranGraph",
4968 | "TuringMachine",
4969 | "TuttePolynomial",
4970 | "TwoWayRule",
4971 | "TypeHint",
4972 | "UnateQ",
4973 | "Uncompress",
4974 | "Undefined",
4975 | "UnderBar",
4976 | "Underflow",
4977 | "Underlined",
4978 | "Underoverscript",
4979 | "UnderoverscriptBox",
4980 | "UnderoverscriptBoxOptions",
4981 | "Underscript",
4982 | "UnderscriptBox",
4983 | "UnderscriptBoxOptions",
4984 | "UnderseaFeatureData",
4985 | "UndirectedEdge",
4986 | "UndirectedGraph",
4987 | "UndirectedGraphQ",
4988 | "UndoOptions",
4989 | "UndoTrackedVariables",
4990 | "Unequal",
4991 | "UnequalTo",
4992 | "Unevaluated",
4993 | "UniformDistribution",
4994 | "UniformGraphDistribution",
4995 | "UniformPolyhedron",
4996 | "UniformSumDistribution",
4997 | "Uninstall",
4998 | "Union",
4999 | "UnionPlus",
5000 | "Unique",
5001 | "UnitaryMatrixQ",
5002 | "UnitBox",
5003 | "UnitConvert",
5004 | "UnitDimensions",
5005 | "Unitize",
5006 | "UnitRootTest",
5007 | "UnitSimplify",
5008 | "UnitStep",
5009 | "UnitSystem",
5010 | "UnitTriangle",
5011 | "UnitVector",
5012 | "UnityDimensions",
5013 | "UniverseModelData",
5014 | "UniversityData",
5015 | "UnixTime",
5016 | "Unprotect",
5017 | "UnsameQ",
5018 | "UnsavedVariables",
5019 | "Unset",
5020 | "UnsetShared",
5021 | "Until",
5022 | "UpArrow",
5023 | "UpArrowBar",
5024 | "UpArrowDownArrow",
5025 | "Update",
5026 | "UpdateInterval",
5027 | "UpdatePacletSites",
5028 | "UpDownArrow",
5029 | "UpEquilibrium",
5030 | "UpperCaseQ",
5031 | "UpperLeftArrow",
5032 | "UpperRightArrow",
5033 | "UpperTriangularize",
5034 | "UpperTriangularMatrix",
5035 | "UpperTriangularMatrixQ",
5036 | "Upsample",
5037 | "UpSet",
5038 | "UpSetDelayed",
5039 | "UpTee",
5040 | "UpTeeArrow",
5041 | "UpTo",
5042 | "UpValues",
5043 | "URL",
5044 | "URLBuild",
5045 | "URLDecode",
5046 | "URLDispatcher",
5047 | "URLDownload",
5048 | "URLEncode",
5049 | "URLExecute",
5050 | "URLExpand",
5051 | "URLParse",
5052 | "URLQueryDecode",
5053 | "URLQueryEncode",
5054 | "URLRead",
5055 | "URLResponseTime",
5056 | "URLShorten",
5057 | "URLSubmit",
5058 | "UsingFrontEnd",
5059 | "UtilityFunction",
5060 | "ValidationLength",
5061 | "ValidationSet",
5062 | "ValueDimensions",
5063 | "ValueQ",
5064 | "Values",
5065 | "Variables",
5066 | "Variance",
5067 | "VarianceEquivalenceTest",
5068 | "VarianceEstimatorFunction",
5069 | "VarianceGammaDistribution",
5070 | "VarianceTest",
5071 | "VectorAngle",
5072 | "VectorAspectRatio",
5073 | "VectorColorFunction",
5074 | "VectorColorFunctionScaling",
5075 | "VectorDensityPlot",
5076 | "VectorDisplacementPlot",
5077 | "VectorDisplacementPlot3D",
5078 | "VectorGreater",
5079 | "VectorGreaterEqual",
5080 | "VectorLess",
5081 | "VectorLessEqual",
5082 | "VectorMarkers",
5083 | "VectorPlot",
5084 | "VectorPlot3D",
5085 | "VectorPoints",
5086 | "VectorQ",
5087 | "VectorRange",
5088 | "Vectors",
5089 | "VectorScaling",
5090 | "VectorSizes",
5091 | "VectorStyle",
5092 | "Vee",
5093 | "Verbatim",
5094 | "VerificationTest",
5095 | "VerifyConvergence",
5096 | "VerifySecurityCertificates",
5097 | "VerifySolutions",
5098 | "VerifyTestAssumptions",
5099 | "VersionedPreferences",
5100 | "VertexAdd",
5101 | "VertexCapacity",
5102 | "VertexChromaticNumber",
5103 | "VertexColors",
5104 | "VertexComponent",
5105 | "VertexConnectivity",
5106 | "VertexContract",
5107 | "VertexCoordinates",
5108 | "VertexCorrelationSimilarity",
5109 | "VertexCosineSimilarity",
5110 | "VertexCount",
5111 | "VertexCoverQ",
5112 | "VertexDataCoordinates",
5113 | "VertexDegree",
5114 | "VertexDelete",
5115 | "VertexDiceSimilarity",
5116 | "VertexEccentricity",
5117 | "VertexInComponent",
5118 | "VertexInComponentGraph",
5119 | "VertexInDegree",
5120 | "VertexIndex",
5121 | "VertexJaccardSimilarity",
5122 | "VertexLabels",
5123 | "VertexLabelStyle",
5124 | "VertexList",
5125 | "VertexNormals",
5126 | "VertexOutComponent",
5127 | "VertexOutComponentGraph",
5128 | "VertexOutDegree",
5129 | "VertexQ",
5130 | "VertexReplace",
5131 | "VertexShape",
5132 | "VertexShapeFunction",
5133 | "VertexSize",
5134 | "VertexStyle",
5135 | "VertexTextureCoordinates",
5136 | "VertexTransitiveGraphQ",
5137 | "VertexWeight",
5138 | "VertexWeightedGraphQ",
5139 | "VerticalBar",
5140 | "VerticalGauge",
5141 | "VerticalSeparator",
5142 | "VerticalSlider",
5143 | "VerticalTilde",
5144 | "VideoEncoding",
5145 | "ViewAngle",
5146 | "ViewCenter",
5147 | "ViewMatrix",
5148 | "ViewPoint",
5149 | "ViewProjection",
5150 | "ViewRange",
5151 | "ViewVector",
5152 | "ViewVertical",
5153 | "Visible",
5154 | "VoiceStyleData",
5155 | "VoigtDistribution",
5156 | "VolcanoData",
5157 | "Volume",
5158 | "VonMisesDistribution",
5159 | "VoronoiMesh",
5160 | "WaitAll",
5161 | "WaitNext",
5162 | "WakebyDistribution",
5163 | "WalleniusHypergeometricDistribution",
5164 | "WaringYuleDistribution",
5165 | "WarpingCorrespondence",
5166 | "WarpingDistance",
5167 | "WatershedComponents",
5168 | "WatsonUSquareTest",
5169 | "WattsStrogatzGraphDistribution",
5170 | "WaveletBestBasis",
5171 | "WaveletFilterCoefficients",
5172 | "WaveletImagePlot",
5173 | "WaveletListPlot",
5174 | "WaveletMapIndexed",
5175 | "WaveletMatrixPlot",
5176 | "WaveletPhi",
5177 | "WaveletPsi",
5178 | "WaveletScale",
5179 | "WaveletScalogram",
5180 | "WaveletThreshold",
5181 | "WavePDEComponent",
5182 | "WeaklyConnectedComponents",
5183 | "WeaklyConnectedGraphComponents",
5184 | "WeaklyConnectedGraphQ",
5185 | "WeakStationarity",
5186 | "WeatherData",
5187 | "WeatherForecastData",
5188 | "WeberE",
5189 | "Wedge",
5190 | "Wednesday",
5191 | "WeibullDistribution",
5192 | "WeierstrassE1",
5193 | "WeierstrassE2",
5194 | "WeierstrassE3",
5195 | "WeierstrassEta1",
5196 | "WeierstrassEta2",
5197 | "WeierstrassEta3",
5198 | "WeierstrassHalfPeriods",
5199 | "WeierstrassHalfPeriodW1",
5200 | "WeierstrassHalfPeriodW2",
5201 | "WeierstrassHalfPeriodW3",
5202 | "WeierstrassInvariantG2",
5203 | "WeierstrassInvariantG3",
5204 | "WeierstrassInvariants",
5205 | "WeierstrassP",
5206 | "WeierstrassPPrime",
5207 | "WeierstrassSigma",
5208 | "WeierstrassZeta",
5209 | "WeightedAdjacencyGraph",
5210 | "WeightedAdjacencyMatrix",
5211 | "WeightedData",
5212 | "WeightedGraphQ",
5213 | "Weights",
5214 | "WelchWindow",
5215 | "WheelGraph",
5216 | "WhenEvent",
5217 | "Which",
5218 | "While",
5219 | "White",
5220 | "WhiteNoiseProcess",
5221 | "WhitePoint",
5222 | "Whitespace",
5223 | "WhitespaceCharacter",
5224 | "WhittakerM",
5225 | "WhittakerW",
5226 | "WienerFilter",
5227 | "WienerProcess",
5228 | "WignerD",
5229 | "WignerSemicircleDistribution",
5230 | "WikipediaData",
5231 | "WilksW",
5232 | "WilksWTest",
5233 | "WindDirectionData",
5234 | "WindingCount",
5235 | "WindingPolygon",
5236 | "WindowClickSelect",
5237 | "WindowElements",
5238 | "WindowFloating",
5239 | "WindowFrame",
5240 | "WindowFrameElements",
5241 | "WindowMargins",
5242 | "WindowOpacity",
5243 | "WindowSize",
5244 | "WindowStatusArea",
5245 | "WindowTitle",
5246 | "WindowToolbars",
5247 | "WindSpeedData",
5248 | "WindVectorData",
5249 | "WinsorizedMean",
5250 | "WinsorizedVariance",
5251 | "WishartMatrixDistribution",
5252 | "With",
5253 | "WolframAlpha",
5254 | "WolframLanguageData",
5255 | "Word",
5256 | "WordBoundary",
5257 | "WordCharacter",
5258 | "WordCloud",
5259 | "WordCount",
5260 | "WordCounts",
5261 | "WordData",
5262 | "WordDefinition",
5263 | "WordFrequency",
5264 | "WordFrequencyData",
5265 | "WordList",
5266 | "WordOrientation",
5267 | "WordSearch",
5268 | "WordSelectionFunction",
5269 | "WordSeparators",
5270 | "WordSpacings",
5271 | "WordStem",
5272 | "WordTranslation",
5273 | "WorkingPrecision",
5274 | "WrapAround",
5275 | "Write",
5276 | "WriteLine",
5277 | "WriteString",
5278 | "Wronskian",
5279 | "XMLElement",
5280 | "XMLObject",
5281 | "XMLTemplate",
5282 | "Xnor",
5283 | "Xor",
5284 | "XYZColor",
5285 | "Yellow",
5286 | "Yesterday",
5287 | "YuleDissimilarity",
5288 | "ZernikeR",
5289 | "ZeroSymmetric",
5290 | "ZeroTest",
5291 | "ZeroWidthTimes",
5292 | "Zeta",
5293 | "ZetaZero",
5294 | "ZIPCodeData",
5295 | "ZipfDistribution",
5296 | "ZTest",
5297 | "ZTransform",
5298 | "\\$Aborted",
5299 | "\\$ActivationKey",
5300 | "\\$AllowDataUpdates",
5301 | "\\$AllowInternet",
5302 | "\\$AssertFunction",
5303 | "\\$Assumptions",
5304 | "\\$AudioInputDevices",
5305 | "\\$AudioOutputDevices",
5306 | "\\$BaseDirectory",
5307 | "\\$BasePacletsDirectory",
5308 | "\\$BatchInput",
5309 | "\\$BatchOutput",
5310 | "\\$ByteOrdering",
5311 | "\\$CacheBaseDirectory",
5312 | "\\$Canceled",
5313 | "\\$CharacterEncoding",
5314 | "\\$CharacterEncodings",
5315 | "\\$CloudAccountName",
5316 | "\\$CloudBase",
5317 | "\\$CloudConnected",
5318 | "\\$CloudCreditsAvailable",
5319 | "\\$CloudEvaluation",
5320 | "\\$CloudExpressionBase",
5321 | "\\$CloudObjectNameFormat",
5322 | "\\$CloudObjectURLType",
5323 | "\\$CloudRootDirectory",
5324 | "\\$CloudSymbolBase",
5325 | "\\$CloudUserID",
5326 | "\\$CloudUserUUID",
5327 | "\\$CloudVersion",
5328 | "\\$CommandLine",
5329 | "\\$CompilationTarget",
5330 | "\\$Context",
5331 | "\\$ContextAliases",
5332 | "\\$ContextPath",
5333 | "\\$ControlActiveSetting",
5334 | "\\$Cookies",
5335 | "\\$CreationDate",
5336 | "\\$CurrentLink",
5337 | "\\$CurrentTask",
5338 | "\\$DateStringFormat",
5339 | "\\$DefaultAudioInputDevice",
5340 | "\\$DefaultAudioOutputDevice",
5341 | "\\$DefaultFrontEnd",
5342 | "\\$DefaultImagingDevice",
5343 | "\\$DefaultKernels",
5344 | "\\$DefaultLocalBase",
5345 | "\\$DefaultLocalKernel",
5346 | "\\$Display",
5347 | "\\$DisplayFunction",
5348 | "\\$DistributedContexts",
5349 | "\\$DynamicEvaluation",
5350 | "\\$Echo",
5351 | "\\$EmbedCodeEnvironments",
5352 | "\\$EmbeddableServices",
5353 | "\\$Epilog",
5354 | "\\$EvaluationCloudBase",
5355 | "\\$EvaluationCloudObject",
5356 | "\\$EvaluationEnvironment",
5357 | "\\$ExportFormats",
5358 | "\\$Failed",
5359 | "\\$FontFamilies",
5360 | "\\$FrontEnd",
5361 | "\\$FrontEndSession",
5362 | "\\$GeoLocation",
5363 | "\\$GeoLocationCity",
5364 | "\\$GeoLocationCountry",
5365 | "\\$GeoLocationSource",
5366 | "\\$HomeDirectory",
5367 | "\\$IgnoreEOF",
5368 | "\\$ImageFormattingWidth",
5369 | "\\$ImageResolution",
5370 | "\\$ImagingDevice",
5371 | "\\$ImagingDevices",
5372 | "\\$ImportFormats",
5373 | "\\$InitialDirectory",
5374 | "\\$Input",
5375 | "\\$InputFileName",
5376 | "\\$InputStreamMethods",
5377 | "\\$Inspector",
5378 | "\\$InstallationDirectory",
5379 | "\\$InterpreterTypes",
5380 | "\\$IterationLimit",
5381 | "\\$KernelCount",
5382 | "\\$KernelID",
5383 | "\\$Language",
5384 | "\\$LibraryPath",
5385 | "\\$LicenseExpirationDate",
5386 | "\\$LicenseID",
5387 | "\\$LicenseServer",
5388 | "\\$Linked",
5389 | "\\$LocalBase",
5390 | "\\$LocalSymbolBase",
5391 | "\\$MachineAddresses",
5392 | "\\$MachineDomains",
5393 | "\\$MachineEpsilon",
5394 | "\\$MachineID",
5395 | "\\$MachineName",
5396 | "\\$MachinePrecision",
5397 | "\\$MachineType",
5398 | "\\$MaxExtraPrecision",
5399 | "\\$MaxMachineNumber",
5400 | "\\$MaxNumber",
5401 | "\\$MaxPiecewiseCases",
5402 | "\\$MaxPrecision",
5403 | "\\$MaxRootDegree",
5404 | "\\$MessageGroups",
5405 | "\\$MessageList",
5406 | "\\$MessagePrePrint",
5407 | "\\$Messages",
5408 | "\\$MinMachineNumber",
5409 | "\\$MinNumber",
5410 | "\\$MinPrecision",
5411 | "\\$MobilePhone",
5412 | "\\$ModuleNumber",
5413 | "\\$NetworkConnected",
5414 | "\\$NewMessage",
5415 | "\\$NewSymbol",
5416 | "\\$NotebookInlineStorageLimit",
5417 | "\\$Notebooks",
5418 | "\\$NumberMarks",
5419 | "\\$OperatingSystem",
5420 | "\\$Output",
5421 | "\\$OutputSizeLimit",
5422 | "\\$OutputStreamMethods",
5423 | "\\$Packages",
5424 | "\\$ParentLink",
5425 | "\\$ParentProcessID",
5426 | "\\$PasswordFile",
5427 | "\\$Path",
5428 | "\\$PathnameSeparator",
5429 | "\\$PerformanceGoal",
5430 | "\\$Permissions",
5431 | "\\$PlotTheme",
5432 | "\\$Printout3DPreviewer",
5433 | "\\$ProcessID",
5434 | "\\$ProcessorCount",
5435 | "\\$ProcessorType",
5436 | "\\$ProgressReporting",
5437 | "\\$RandomGeneratorState",
5438 | "\\$RecursionLimit",
5439 | "\\$ReleaseNumber",
5440 | "\\$RequesterAddress",
5441 | "\\$RequesterCloudUserID",
5442 | "\\$RequesterCloudUserUUID",
5443 | "\\$RequesterWolframID",
5444 | "\\$RequesterWolframUUID",
5445 | "\\$RootDirectory",
5446 | "\\$ScriptCommandLine",
5447 | "\\$ScriptInputString",
5448 | "\\$Services",
5449 | "\\$SessionID",
5450 | "\\$SharedFunctions",
5451 | "\\$SharedVariables",
5452 | "\\$SoundDisplayFunction",
5453 | "\\$SynchronousEvaluation",
5454 | "\\$System",
5455 | "\\$SystemCharacterEncoding",
5456 | "\\$SystemID",
5457 | "\\$SystemShell",
5458 | "\\$SystemTimeZone",
5459 | "\\$SystemWordLength",
5460 | "\\$TemplatePath",
5461 | "\\$TemporaryDirectory",
5462 | "\\$TimedOut",
5463 | "\\$TimeUnit",
5464 | "\\$TimeZone",
5465 | "\\$TimeZoneEntity",
5466 | "\\$UnitSystem",
5467 | "\\$Urgent",
5468 | "\\$UserAgentString",
5469 | "\\$UserBaseDirectory",
5470 | "\\$UserBasePacletsDirectory",
5471 | "\\$UserDocumentsDirectory",
5472 | "\\$Username",
5473 | "\\$UserURLBase",
5474 | "\\$Version",
5475 | "\\$VersionNumber",
5476 | "\\$WolframDocumentsDirectory",
5477 | "\\$WolframID",
5478 | "\\$WolframUUID"
5479 | ]
5480 | }
--------------------------------------------------------------------------------