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