rouge 3.8.0 → 3.12.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/rouge/demos/apex +9 -0
- data/lib/rouge/demos/clean +6 -0
- data/lib/rouge/demos/csvs +8 -0
- data/lib/rouge/demos/eex +1 -0
- data/lib/rouge/demos/haxe +5 -0
- data/lib/rouge/demos/hql +5 -0
- data/lib/rouge/demos/jsl +3 -0
- data/lib/rouge/demos/liquid +0 -1
- data/lib/rouge/demos/lustre +6 -0
- data/lib/rouge/demos/lutin +18 -0
- data/lib/rouge/demos/minizinc +23 -0
- data/lib/rouge/demos/robot_framework +27 -0
- data/lib/rouge/demos/sparql +6 -0
- data/lib/rouge/demos/terraform +0 -15
- data/lib/rouge/guessers/disambiguation.rb +5 -0
- data/lib/rouge/lexer.rb +3 -0
- data/lib/rouge/lexers/apex.rb +126 -0
- data/lib/rouge/lexers/clean.rb +156 -0
- data/lib/rouge/lexers/common_lisp.rb +1 -1
- data/lib/rouge/lexers/coq.rb +12 -9
- data/lib/rouge/lexers/csvs.rb +44 -0
- data/lib/rouge/lexers/eex.rb +52 -0
- data/lib/rouge/lexers/elixir.rb +20 -9
- data/lib/rouge/lexers/haxe.rb +246 -0
- data/lib/rouge/lexers/hql.rb +139 -0
- data/lib/rouge/lexers/http.rb +5 -5
- data/lib/rouge/lexers/javascript.rb +1 -1
- data/lib/rouge/lexers/jsl.rb +55 -0
- data/lib/rouge/lexers/json.rb +1 -1
- data/lib/rouge/lexers/kotlin.rb +21 -28
- data/lib/rouge/lexers/liquid.rb +82 -108
- data/lib/rouge/lexers/lustre.rb +79 -0
- data/lib/rouge/lexers/lutin.rb +33 -0
- data/lib/rouge/lexers/markdown.rb +7 -1
- data/lib/rouge/lexers/mason.rb +0 -5
- data/lib/rouge/lexers/matlab.rb +4 -2
- data/lib/rouge/lexers/matlab/builtins.yml +3515 -0
- data/lib/rouge/lexers/minizinc.rb +87 -0
- data/lib/rouge/lexers/perl.rb +1 -1
- data/lib/rouge/lexers/q.rb +1 -1
- data/lib/rouge/lexers/robot_framework.rb +249 -0
- data/lib/rouge/lexers/shell.rb +5 -3
- data/lib/rouge/lexers/sparql.rb +129 -0
- data/lib/rouge/lexers/sql.rb +26 -6
- data/lib/rouge/lexers/swift.rb +1 -1
- data/lib/rouge/lexers/terraform.rb +8 -0
- data/lib/rouge/plugins/redcarpet.rb +7 -1
- data/lib/rouge/version.rb +1 -1
- metadata +27 -3
- data/lib/rouge/lexers/matlab/builtins.rb +0 -13
data/lib/rouge/lexers/sql.rb
CHANGED
@@ -51,7 +51,7 @@ module Rouge
|
|
51
51
|
LOCALTIME LOCALTIMESTAMP LOCATION LOCATOR LOCK LOWER MAP MATCH
|
52
52
|
MAX MAXVALUE MESSAGE_LENGTH MESSAGE_OCTET_LENGTH MESSAGE_TEXT
|
53
53
|
METHOD MIN MINUTE MINVALUE MOD MODE MODIFIES MODIFY MONTH
|
54
|
-
MORE MOVE MUMPS NAMES
|
54
|
+
MORE MOVE MUMPS NAMES NATURAL NCLOB NEW NEXT
|
55
55
|
NO NOCREATEDB NOCREATEUSER NONE NOT NOTHING NOTIFY NOTNULL
|
56
56
|
NULL NULLABLE NULLIF OBJECT OCTET_LENGTH OF OFF OFFSET OIDS
|
57
57
|
OLD ON ONLY OPEN OPERATION OPERATOR OPTION OPTIONS OR ORDER
|
@@ -59,7 +59,7 @@ module Rouge
|
|
59
59
|
OWNER PAD PARAMETER PARAMETERS PARAMETER_MODE PARAMATER_NAME
|
60
60
|
PARAMATER_ORDINAL_POSITION PARAMETER_SPECIFIC_CATALOG
|
61
61
|
PARAMETER_SPECIFIC_NAME PARAMATER_SPECIFIC_SCHEMA PARTIAL PASCAL
|
62
|
-
PENDANT PLACING PLI POSITION POSTFIX
|
62
|
+
PENDANT PLACING PLI POSITION POSTFIX PREFIX PREORDER
|
63
63
|
PREPARE PRESERVE PRIMARY PRIOR PRIVILEGES PROCEDURAL PROCEDURE
|
64
64
|
PUBLIC READ READS RECHECK RECURSIVE REF REFERENCES REFERENCING
|
65
65
|
REINDEX RELATIVE RENAME REPEATABLE REPLACE RESET RESTART
|
@@ -75,7 +75,7 @@ module Rouge
|
|
75
75
|
STDIN STDOUT STORAGE STRICT STRUCTURE STYPE SUBCLASS_ORIGIN
|
76
76
|
SUBLIST SUBSTRING SUM SYMMETRIC SYSID SYSTEM SYSTEM_USER
|
77
77
|
TABLE TABLE_NAME TEMP TEMPLATE TEMPORARY TERMINATE THAN THEN
|
78
|
-
|
78
|
+
TIMEZONE_HOUR TIMEZONE_MINUTE TO TOAST TRAILING
|
79
79
|
TRANSATION TRANSACTIONS_COMMITTED TRANSACTIONS_ROLLED_BACK
|
80
80
|
TRANSATION_ACTIVE TRANSFORM TRANSFORMS TRANSLATE TRANSLATION
|
81
81
|
TREAT TRIGGER TRIGGER_CATALOG TRIGGER_NAME TRIGGER_SCHEMA TRIM
|
@@ -84,21 +84,41 @@ module Rouge
|
|
84
84
|
USAGE USER USER_DEFINED_TYPE_CATALOG USER_DEFINED_TYPE_NAME
|
85
85
|
USER_DEFINED_TYPE_SCHEMA USING VACUUM VALID VALIDATOR VALUES
|
86
86
|
VARIABLE VERBOSE VERSION VIEW VOLATILE WHEN WHENEVER WHERE
|
87
|
-
WITH WITHOUT WORK WRITE
|
87
|
+
WITH WITHOUT WORK WRITE ZONE
|
88
88
|
)
|
89
89
|
end
|
90
90
|
|
91
|
+
def self.keywords_type
|
92
|
+
# sources:
|
93
|
+
# https://dev.mysql.com/doc/refman/5.7/en/numeric-type-overview.html
|
94
|
+
# https://dev.mysql.com/doc/refman/5.7/en/date-and-time-type-overview.html
|
95
|
+
# https://dev.mysql.com/doc/refman/5.7/en/string-type-overview.html
|
96
|
+
@keywords_type ||= Set.new(%w(
|
97
|
+
ZEROFILL UNSIGNED SIGNED SERIAL BIT TINYINT BOOL BOOLEAN SMALLINT
|
98
|
+
MEDIUMINT INT INTEGER BIGINT DECIMAL DEC NUMERIC FIXED FLOAT DOUBLE
|
99
|
+
PRECISION REAL
|
100
|
+
DATE DATETIME TIMESTAMP TIME YEAR
|
101
|
+
NATIONAL CHAR CHARACTER NCHAR BYTE
|
102
|
+
VARCHAR VARYING BINARY VARBINARY TINYBLOB TINYTEXT BLOB TEXT
|
103
|
+
MEDIUMBLOB MEDIUMTEXT LONGBLOB LONGTEXT ENUM
|
104
|
+
))
|
105
|
+
end
|
106
|
+
|
91
107
|
state :root do
|
92
108
|
rule %r/\s+/m, Text
|
93
109
|
rule %r/--.*/, Comment::Single
|
94
110
|
rule %r(/\*), Comment::Multiline, :multiline_comments
|
95
111
|
rule %r/\d+/, Num::Integer
|
96
112
|
rule %r/'/, Str::Single, :single_string
|
113
|
+
# A double-quoted string refers to a database object in our default SQL
|
114
|
+
# dialect, which is apropriate for e.g. MS SQL and PostgreSQL.
|
97
115
|
rule %r/"/, Name::Variable, :double_string
|
98
116
|
rule %r/`/, Name::Variable, :backtick
|
99
117
|
|
100
|
-
rule %r/\w\w*/ do |m|
|
101
|
-
if self.class.
|
118
|
+
rule %r/\w[\w\d]*/ do |m|
|
119
|
+
if self.class.keywords_type.include? m[0].upcase
|
120
|
+
token Name::Builtin
|
121
|
+
elsif self.class.keywords.include? m[0].upcase
|
102
122
|
token Keyword
|
103
123
|
else
|
104
124
|
token Name
|
data/lib/rouge/lexers/swift.rb
CHANGED
@@ -80,7 +80,7 @@ module Rouge
|
|
80
80
|
rule %r/0b[01]+(?:_[01]+)*/, Num::Bin
|
81
81
|
rule %r{[\d]+(?:_\d+)*}, Num::Integer
|
82
82
|
|
83
|
-
rule %r/@#{id}
|
83
|
+
rule %r/@#{id}/, Keyword::Declaration
|
84
84
|
|
85
85
|
rule %r/(private|internal)(\([ ]*)(\w+)([ ]*\))/ do |m|
|
86
86
|
if m[3] == 'set'
|
@@ -9,7 +9,13 @@ module Rouge
|
|
9
9
|
module Plugins
|
10
10
|
module Redcarpet
|
11
11
|
def block_code(code, language)
|
12
|
-
lexer =
|
12
|
+
lexer =
|
13
|
+
begin
|
14
|
+
Lexer.find_fancy(language, code)
|
15
|
+
rescue Guesser::Ambiguous => e
|
16
|
+
e.alternatives.first
|
17
|
+
end
|
18
|
+
lexer ||= Lexers::PlainText
|
13
19
|
|
14
20
|
# XXX HACK: Redcarpet strips hard tabs out of code blocks,
|
15
21
|
# so we assume you're not using leading spaces that aren't tabs,
|
data/lib/rouge/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rouge
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jeanine Adkisson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-10-15 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Rouge aims to a be a simple, easy-to-extend drop-in replacement for pygments.
|
14
14
|
email:
|
@@ -27,6 +27,7 @@ files:
|
|
27
27
|
- lib/rouge/demos/actionscript
|
28
28
|
- lib/rouge/demos/ada
|
29
29
|
- lib/rouge/demos/apache
|
30
|
+
- lib/rouge/demos/apex
|
30
31
|
- lib/rouge/demos/apiblueprint
|
31
32
|
- lib/rouge/demos/applescript
|
32
33
|
- lib/rouge/demos/armasm
|
@@ -40,6 +41,7 @@ files:
|
|
40
41
|
- lib/rouge/demos/c
|
41
42
|
- lib/rouge/demos/ceylon
|
42
43
|
- lib/rouge/demos/cfscript
|
44
|
+
- lib/rouge/demos/clean
|
43
45
|
- lib/rouge/demos/clojure
|
44
46
|
- lib/rouge/demos/cmake
|
45
47
|
- lib/rouge/demos/cmhg
|
@@ -52,6 +54,7 @@ files:
|
|
52
54
|
- lib/rouge/demos/crystal
|
53
55
|
- lib/rouge/demos/csharp
|
54
56
|
- lib/rouge/demos/css
|
57
|
+
- lib/rouge/demos/csvs
|
55
58
|
- lib/rouge/demos/cuda
|
56
59
|
- lib/rouge/demos/cython
|
57
60
|
- lib/rouge/demos/d
|
@@ -60,6 +63,7 @@ files:
|
|
60
63
|
- lib/rouge/demos/digdag
|
61
64
|
- lib/rouge/demos/docker
|
62
65
|
- lib/rouge/demos/dot
|
66
|
+
- lib/rouge/demos/eex
|
63
67
|
- lib/rouge/demos/eiffel
|
64
68
|
- lib/rouge/demos/elixir
|
65
69
|
- lib/rouge/demos/elm
|
@@ -81,8 +85,10 @@ files:
|
|
81
85
|
- lib/rouge/demos/haml
|
82
86
|
- lib/rouge/demos/handlebars
|
83
87
|
- lib/rouge/demos/haskell
|
88
|
+
- lib/rouge/demos/haxe
|
84
89
|
- lib/rouge/demos/hcl
|
85
90
|
- lib/rouge/demos/hocon
|
91
|
+
- lib/rouge/demos/hql
|
86
92
|
- lib/rouge/demos/html
|
87
93
|
- lib/rouge/demos/http
|
88
94
|
- lib/rouge/demos/hylang
|
@@ -95,6 +101,7 @@ files:
|
|
95
101
|
- lib/rouge/demos/java
|
96
102
|
- lib/rouge/demos/javascript
|
97
103
|
- lib/rouge/demos/jinja
|
104
|
+
- lib/rouge/demos/jsl
|
98
105
|
- lib/rouge/demos/json
|
99
106
|
- lib/rouge/demos/json-doc
|
100
107
|
- lib/rouge/demos/jsonnet
|
@@ -108,6 +115,8 @@ files:
|
|
108
115
|
- lib/rouge/demos/literate_haskell
|
109
116
|
- lib/rouge/demos/llvm
|
110
117
|
- lib/rouge/demos/lua
|
118
|
+
- lib/rouge/demos/lustre
|
119
|
+
- lib/rouge/demos/lutin
|
111
120
|
- lib/rouge/demos/m68k
|
112
121
|
- lib/rouge/demos/magik
|
113
122
|
- lib/rouge/demos/make
|
@@ -115,6 +124,7 @@ files:
|
|
115
124
|
- lib/rouge/demos/mason
|
116
125
|
- lib/rouge/demos/mathematica
|
117
126
|
- lib/rouge/demos/matlab
|
127
|
+
- lib/rouge/demos/minizinc
|
118
128
|
- lib/rouge/demos/moonscript
|
119
129
|
- lib/rouge/demos/mosel
|
120
130
|
- lib/rouge/demos/msgtrans
|
@@ -146,6 +156,7 @@ files:
|
|
146
156
|
- lib/rouge/demos/r
|
147
157
|
- lib/rouge/demos/racket
|
148
158
|
- lib/rouge/demos/reasonml
|
159
|
+
- lib/rouge/demos/robot_framework
|
149
160
|
- lib/rouge/demos/ruby
|
150
161
|
- lib/rouge/demos/rust
|
151
162
|
- lib/rouge/demos/sas
|
@@ -160,6 +171,7 @@ files:
|
|
160
171
|
- lib/rouge/demos/smalltalk
|
161
172
|
- lib/rouge/demos/smarty
|
162
173
|
- lib/rouge/demos/sml
|
174
|
+
- lib/rouge/demos/sparql
|
163
175
|
- lib/rouge/demos/sqf
|
164
176
|
- lib/rouge/demos/sql
|
165
177
|
- lib/rouge/demos/supercollider
|
@@ -211,6 +223,7 @@ files:
|
|
211
223
|
- lib/rouge/lexers/ada.rb
|
212
224
|
- lib/rouge/lexers/apache.rb
|
213
225
|
- lib/rouge/lexers/apache/keywords.yml
|
226
|
+
- lib/rouge/lexers/apex.rb
|
214
227
|
- lib/rouge/lexers/apiblueprint.rb
|
215
228
|
- lib/rouge/lexers/apple_script.rb
|
216
229
|
- lib/rouge/lexers/armasm.rb
|
@@ -224,6 +237,7 @@ files:
|
|
224
237
|
- lib/rouge/lexers/c.rb
|
225
238
|
- lib/rouge/lexers/ceylon.rb
|
226
239
|
- lib/rouge/lexers/cfscript.rb
|
240
|
+
- lib/rouge/lexers/clean.rb
|
227
241
|
- lib/rouge/lexers/clojure.rb
|
228
242
|
- lib/rouge/lexers/cmake.rb
|
229
243
|
- lib/rouge/lexers/cmhg.rb
|
@@ -236,6 +250,7 @@ files:
|
|
236
250
|
- lib/rouge/lexers/crystal.rb
|
237
251
|
- lib/rouge/lexers/csharp.rb
|
238
252
|
- lib/rouge/lexers/css.rb
|
253
|
+
- lib/rouge/lexers/csvs.rb
|
239
254
|
- lib/rouge/lexers/cuda.rb
|
240
255
|
- lib/rouge/lexers/cython.rb
|
241
256
|
- lib/rouge/lexers/d.rb
|
@@ -244,6 +259,7 @@ files:
|
|
244
259
|
- lib/rouge/lexers/digdag.rb
|
245
260
|
- lib/rouge/lexers/docker.rb
|
246
261
|
- lib/rouge/lexers/dot.rb
|
262
|
+
- lib/rouge/lexers/eex.rb
|
247
263
|
- lib/rouge/lexers/eiffel.rb
|
248
264
|
- lib/rouge/lexers/elixir.rb
|
249
265
|
- lib/rouge/lexers/elm.rb
|
@@ -266,8 +282,10 @@ files:
|
|
266
282
|
- lib/rouge/lexers/haml.rb
|
267
283
|
- lib/rouge/lexers/handlebars.rb
|
268
284
|
- lib/rouge/lexers/haskell.rb
|
285
|
+
- lib/rouge/lexers/haxe.rb
|
269
286
|
- lib/rouge/lexers/hcl.rb
|
270
287
|
- lib/rouge/lexers/hocon.rb
|
288
|
+
- lib/rouge/lexers/hql.rb
|
271
289
|
- lib/rouge/lexers/html.rb
|
272
290
|
- lib/rouge/lexers/http.rb
|
273
291
|
- lib/rouge/lexers/hylang.rb
|
@@ -279,6 +297,7 @@ files:
|
|
279
297
|
- lib/rouge/lexers/java.rb
|
280
298
|
- lib/rouge/lexers/javascript.rb
|
281
299
|
- lib/rouge/lexers/jinja.rb
|
300
|
+
- lib/rouge/lexers/jsl.rb
|
282
301
|
- lib/rouge/lexers/json.rb
|
283
302
|
- lib/rouge/lexers/json_doc.rb
|
284
303
|
- lib/rouge/lexers/jsonnet.rb
|
@@ -294,6 +313,8 @@ files:
|
|
294
313
|
- lib/rouge/lexers/llvm.rb
|
295
314
|
- lib/rouge/lexers/lua.rb
|
296
315
|
- lib/rouge/lexers/lua/builtins.rb
|
316
|
+
- lib/rouge/lexers/lustre.rb
|
317
|
+
- lib/rouge/lexers/lutin.rb
|
297
318
|
- lib/rouge/lexers/m68k.rb
|
298
319
|
- lib/rouge/lexers/magik.rb
|
299
320
|
- lib/rouge/lexers/make.rb
|
@@ -302,7 +323,8 @@ files:
|
|
302
323
|
- lib/rouge/lexers/mathematica.rb
|
303
324
|
- lib/rouge/lexers/mathematica/builtins.rb
|
304
325
|
- lib/rouge/lexers/matlab.rb
|
305
|
-
- lib/rouge/lexers/matlab/builtins.
|
326
|
+
- lib/rouge/lexers/matlab/builtins.yml
|
327
|
+
- lib/rouge/lexers/minizinc.rb
|
306
328
|
- lib/rouge/lexers/moonscript.rb
|
307
329
|
- lib/rouge/lexers/mosel.rb
|
308
330
|
- lib/rouge/lexers/msgtrans.rb
|
@@ -336,6 +358,7 @@ files:
|
|
336
358
|
- lib/rouge/lexers/r.rb
|
337
359
|
- lib/rouge/lexers/racket.rb
|
338
360
|
- lib/rouge/lexers/reasonml.rb
|
361
|
+
- lib/rouge/lexers/robot_framework.rb
|
339
362
|
- lib/rouge/lexers/ruby.rb
|
340
363
|
- lib/rouge/lexers/rust.rb
|
341
364
|
- lib/rouge/lexers/sas.rb
|
@@ -351,6 +374,7 @@ files:
|
|
351
374
|
- lib/rouge/lexers/smalltalk.rb
|
352
375
|
- lib/rouge/lexers/smarty.rb
|
353
376
|
- lib/rouge/lexers/sml.rb
|
377
|
+
- lib/rouge/lexers/sparql.rb
|
354
378
|
- lib/rouge/lexers/sqf.rb
|
355
379
|
- lib/rouge/lexers/sqf/commands.rb
|
356
380
|
- lib/rouge/lexers/sql.rb
|
@@ -1,13 +0,0 @@
|
|
1
|
-
# -*- coding: utf-8 -*- #
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
# automatically generated by `rake builtins:matlab`
|
5
|
-
module Rouge
|
6
|
-
module Lexers
|
7
|
-
class Matlab
|
8
|
-
def self.builtins
|
9
|
-
@builtins ||= Set.new %w(ans clc diary format home iskeyword more zeros ones rand true false eye diag blkdiag cat horzcat vertcat repelem repmat linspace logspace freqspace meshgrid ndgrid length size ndims numel isscalar isvector ismatrix isrow iscolumn isempty sort sortrows issorted issortedrows flip fliplr flipud rot90 transpose ctranspose permute ipermute circshift shiftdim reshape squeeze colon end ind2sub sub2ind plus uplus minus uminus times rdivide ldivide power mtimes mrdivide mldivide mpower cumprod cumsum diff movsum prod sum ceil fix floor idivide mod rem round bsxfun eq ge gt le lt ne isequal isequaln logicaloperatorsshortcircuit and not or xor all any false find islogical logical true intersect ismember ismembertol issorted setdiff setxor union unique uniquetol join innerjoin outerjoin bitand bitcmp bitget bitor bitset bitshift bitxor swapbytes double single int8 int16 int32 int64 uint8 uint16 uint32 uint64 cast typecast isinteger isfloat isnumeric isreal isfinite isinf isnan eps flintmax inf intmax intmin nan realmax realmin string strings join char cellstr blanks newline compose sprintf strcat ischar iscellstr isstring strlength isstrprop isletter isspace contains count endswith startswith strfind sscanf replace replacebetween strrep join split splitlines strjoin strsplit strtok erase erasebetween extractafter extractbefore extractbetween insertafter insertbefore pad strip lower upper reverse deblank strtrim strjust strcmp strcmpi strncmp strncmpi regexp regexpi regexprep regexptranslate datetime timezones years days hours minutes seconds milliseconds duration calyears calquarters calmonths calweeks caldays calendarduration exceltime juliandate posixtime yyyymmdd year quarter month week day hour minute second ymd hms split time timeofday isdst isweekend tzoffset between caldiff dateshift isbetween isdatetime isduration iscalendarduration isnat nat datenum datevec datestr char cellstr string now clock date calendar eomday weekday addtodate etime categorical iscategorical discretize categories iscategory isordinal isprotected addcats mergecats removecats renamecats reordercats setcats summary countcats isundefined table array2table cell2table struct2table table2array table2cell table2struct readtable writetable detectimportoptions istable head tail height width summary intersect ismember setdiff setxor unique union join innerjoin outerjoin sortrows stack unstack vartype ismissing standardizemissing rmmissing fillmissing varfun rowfun findgroups splitapply timetable retime synchronize lag table2timetable array2timetable timetable2table istimetable isregular timerange withtol vartype rmmissing issorted sortrows unique struct fieldnames getfield isfield isstruct orderfields rmfield setfield arrayfun structfun table2struct struct2table cell2struct struct2cell cell cell2mat cell2struct cell2table celldisp cellfun cellplot cellstr iscell iscellstr mat2cell num2cell strjoin strsplit struct2cell table2cell feval func2str str2func localfunctions functions addevent delevent gettsafteratevent gettsafterevent gettsatevent gettsbeforeatevent gettsbeforeevent gettsbetweenevents gettscollection isemptytscollection lengthtscollection settscollection sizetscollection tscollection addsampletocollection addts delsamplefromcollection getabstimetscollection getsampleusingtimetscollection gettimeseriesnames horzcattscollection removets resampletscollection setabstimetscollection settimeseriesnames vertcattscollection isa iscalendarduration iscategorical iscell iscellstr ischar isdatetime isduration isfield isfloat isgraphics isinteger isjava islogical isnumeric isobject isreal isenum isstruct istable is class validateattributes whos char cellstr int2str mat2str num2str str2double str2num native2unicode unicode2native base2dec bin2dec dec2base dec2bin dec2hex hex2dec hex2num num2hex table2array table2cell table2struct array2table cell2table struct2table cell2mat cell2struct mat2cell num2cell struct2cell plus uplus minus uminus times rdivide ldivide power mtimes mrdivide mldivide mpower cumprod cumsum diff movsum prod sum ceil fix floor idivide mod rem round bsxfun sin sind asin asind sinh asinh cos cosd acos acosd cosh acosh tan tand atan atand atan2 atan2d tanh atanh csc cscd acsc acscd csch acsch sec secd asec asecd sech asech cot cotd acot acotd coth acoth hypot deg2rad rad2deg exp expm1 log log10 log1p log2 nextpow2 nthroot pow2 reallog realpow realsqrt sqrt abs angle complex conj cplxpair i imag isreal j real sign unwrap factor factorial gcd isprime lcm nchoosek perms primes rat rats poly polyeig polyfit residue roots polyval polyvalm conv deconv polyint polyder airy besselh besseli besselj besselk bessely beta betainc betaincinv betaln ellipj ellipke erf erfc erfcinv erfcx erfinv expint gamma gammainc gammaincinv gammaln legendre psi cart2pol cart2sph pol2cart sph2cart eps flintmax i j inf pi nan isfinite isinf isnan compan gallery hadamard hankel hilb invhilb magic pascal rosser toeplitz vander wilkinson mldivide mrdivide linsolve inv pinv lscov lsqnonneg sylvester eig eigs balance svd svds gsvd ordeig ordqz ordschur polyeig qz hess schur rsf2csf cdf2rdf lu ldl chol cholupdate qr qrdelete qrinsert qrupdate planerot transpose ctranspose mtimes mpower sqrtm expm logm funm kron cross dot bandwidth tril triu isbanded isdiag ishermitian issymmetric istril istriu norm normest cond condest rcond condeig det null orth rank rref trace subspace rand randn randi randperm rng interp1 interp2 interp3 interpn pchip spline ppval mkpp unmkpp padecoef interpft ndgrid meshgrid griddata griddatan fminbnd fminsearch lsqnonneg fzero optimget optimset ode45 ode23 ode113 ode15s ode23s ode23t ode23tb ode15i decic odeget odeset deval odextend bvp4c bvp5c bvpinit bvpxtend bvpget bvpset deval dde23 ddesd ddensd ddeget ddeset deval pdepe pdeval integral integral2 integral3 quadgk quad2d cumtrapz trapz polyint del2 diff gradient polyder fft fft2 fftn fftshift fftw ifft ifft2 ifftn ifftshift nextpow2 interpft conv conv2 convn deconv filter filter2 ss2tf padecoef spalloc spdiags speye sprand sprandn sprandsym sparse spconvert issparse nnz nonzeros nzmax spfun spones spparms spy find full amd colamd colperm dmperm randperm symamd symrcm pcg minres symmlq gmres bicg bicgstab bicgstabl cgs qmr tfqmr lsqr ichol ilu eigs svds normest condest sprank etree symbfact spaugment dmperm etreeplot treelayout treeplot gplot unmesh graph digraph tetramesh trimesh triplot trisurf delaunay delaunayn tetramesh trimesh triplot trisurf dsearchn tsearchn delaunay delaunayn boundary alphashape convhull convhulln patch voronoi voronoin polyarea inpolygon rectint plot plot3 loglog semilogx semilogy errorbar fplot fplot3 fimplicit linespec colorspec bar bar3 barh bar3h histogram histcounts histogram2 histcounts2 rose pareto area pie pie3 stem stairs stem3 scatter scatter3 spy plotmatrix heatmap polarplot polarscatter polarhistogram compass ezpolar rlim thetalim rticks thetaticks rticklabels thetaticklabels rtickformat thetatickformat rtickangle polaraxes contour contourf contourc contour3 contourslice clabel fcontour feather quiver compass quiver3 streamslice streamline surf surfc surface surfl surfnorm mesh meshc meshz hidden fsurf fmesh fimplicit3 waterfall ribbon contour3 peaks cylinder ellipsoid sphere pcolor surf2patch contourslice flow isocaps isocolors isonormals isosurface reducepatch reducevolume shrinkfaces slice smooth3 subvolume volumebounds coneplot curl divergence interpstreamspeed stream2 stream3 streamline streamparticles streamribbon streamslice streamtube fill fill3 patch surf2patch movie getframe frame2im im2frame animatedline comet comet3 drawnow refreshdata title xlabel ylabel zlabel clabel legend colorbar text texlabel gtext line rectangle annotation xlim ylim zlim axis box daspect pbaspect grid xticks yticks zticks xticklabels yticklabels zticklabels xtickformat ytickformat ztickformat xtickangle ytickangle ztickangle datetick ruler2num num2ruler hold subplot yyaxis cla axes figure colormap colorbar rgbplot colormapeditor brighten contrast caxis spinmap hsv2rgb rgb2hsv parula jet hsv hot cool spring summer autumn winter gray bone copper pink lines colorcube prism flag view makehgtform viewmtx cameratoolbar campan camzoom camdolly camlookat camorbit campos camproj camroll camtarget camup camva camlight light lightangle lighting shading diffuse material specular alim alpha alphamap imshow image imagesc imread imwrite imfinfo imformats frame2im im2frame im2java im2double ind2rgb rgb2gray rgb2ind imapprox dither cmpermute cmunique print saveas getframe savefig openfig orient hgexport printopt get set reset inspect gca gcf gcbf gcbo gco groot ancestor allchild findall findobj findfigs gobjects isgraphics ishandle copyobj delete gobjects isgraphics isempty isequal isa clf cla close uicontextmenu uimenu dragrect rbbox refresh shg hggroup hgtransform makehgtform eye hold ishold newplot clf cla drawnow opengl readtable detectimportoptions writetable textscan dlmread dlmwrite csvread csvwrite type readtable detectimportoptions writetable xlsfinfo xlsread xlswrite importdata im2java imfinfo imread imwrite nccreate ncdisp ncinfo ncread ncreadatt ncwrite ncwriteatt ncwriteschema h5create h5disp h5info h5read h5readatt h5write h5writeatt hdfinfo hdfread hdftool imread imwrite hdfan hdfhx hdfh hdfhd hdfhe hdfml hdfpt hdfv hdfvf hdfvh hdfvs hdfdf24 hdfdfr8 fitsdisp fitsinfo fitsread fitswrite multibandread multibandwrite cdfinfo cdfread cdfepoch todatenum audioinfo audioread audiowrite videoreader videowriter mmfileinfo lin2mu mu2lin audiodevinfo audioplayer audiorecorder sound soundsc beep xmlread xmlwrite xslt load save matfile disp who whos clear clearvars openvar fclose feof ferror fgetl fgets fileread fopen fprintf fread frewind fscanf fseek ftell fwrite tcpclient web webread webwrite websave weboptions sendmail jsondecode jsonencode readasync serial serialbreak seriallist stopasync instrcallback instrfind instrfindall record tabulartextdatastore imagedatastore spreadsheetdatastore filedatastore datastore tall datastore mapreducer gather head tail topkrows istall classunderlying isaunderlying write mapreduce datastore add addmulti hasnext getnext mapreducer gcmr matfile memmapfile ismissing rmmissing fillmissing missing standardizemissing isoutlier filloutliers smoothdata movmean movmedian detrend filter filter2 discretize histcounts histcounts2 findgroups splitapply rowfun varfun accumarray min max bounds mean median mode std var corrcoef cov cummax cummin movmad movmax movmean movmedian movmin movprod movstd movsum movvar pan zoom rotate rotate3d brush datacursormode ginput linkdata linkaxes linkprop refreshdata figurepalette plotbrowser plotedit plottools propertyeditor propedit showplottool if for parfor switch try while break continue end pause return edit input publish grabcode snapnow function nargin nargout varargin varargout narginchk nargoutchk validateattributes validatestring inputname isvarname namelengthmax persistent assignin global mlock munlock mislocked try error warning lastwarn assert oncleanup addpath rmpath path savepath userpath genpath pathsep pathtool restoredefaultpath rehash dir ls pwd fileattrib exist isdir type visdiff what which cd copyfile delete recycle mkdir movefile rmdir open winopen zip unzip gzip gunzip tar untar fileparts fullfile filemarker filesep tempdir tempname matlabroot toolboxdir dbclear dbcont dbdown dbquit dbstack dbstatus dbstep dbstop dbtype dbup checkcode keyboard mlintrpt edit echo eval evalc evalin feval run builtin mfilename pcode uiaxes uibutton uibuttongroup uicheckbox uidropdown uieditfield uilabel uilistbox uiradiobutton uislider uispinner uitable uitextarea uitogglebutton scroll uifigure uipanel uitabgroup uitab uigauge uiknob uilamp uiswitch uialert questdlg inputdlg listdlg uisetcolor uigetfile uiputfile uigetdir uiopen uisave appdesigner figure axes uicontrol uitable uipanel uibuttongroup uitab uitabgroup uimenu uicontextmenu uitoolbar uipushtool uitoggletool actxcontrol align movegui getpixelposition setpixelposition listfonts textwrap uistack inspect errordlg warndlg msgbox helpdlg waitbar questdlg inputdlg listdlg uisetcolor uisetfont export2wsdlg uigetfile uiputfile uigetdir uiopen uisave printdlg printpreview exportsetupdlg dialog uigetpref guide uiwait uiresume waitfor waitforbuttonpress closereq getappdata setappdata isappdata rmappdata guidata guihandles uisetpref class isobject enumeration events methods properties classdef classdef import properties isprop mustbefinite mustbegreaterthan mustbegreaterthanorequal mustbeinteger mustbelessthan mustbelessthanorequal mustbemember mustbenegative mustbenonempty mustbenonnan mustbenonnegative mustbenonpositive mustbenonsparse mustbenonzero mustbenumeric mustbenumericorlogical mustbepositive mustbereal methods ismethod isequal eq events superclasses enumeration isenum numargumentsfromsubscript subsref subsasgn subsindex substruct builtin empty disp display details saveobj loadobj edit metaclass properties methods events superclasses step clone getnuminputs getnumoutputs islocked resetsystemobject releasesystemobject mexext inmem loadlibrary unloadlibrary libisloaded calllib libfunctions libfunctionsview libstruct libpointer import isjava javaaddpath javaarray javachk javaclasspath javamethod javamethodedt javaobject javaobjectedt javarmpath usejava net enablenetfromnetworkdrive cell begininvoke endinvoke combine remove removeall bitand bitor bitxor bitnot actxserver actxcontrol actxcontrollist actxcontrolselect actxgetrunningserver iscom addproperty deleteproperty inspect fieldnames methods methodsview invoke isevent eventlisteners registerevent unregisterallevents unregisterevent isinterface interfaces release move pyversion pyargs pyargs pyargs builddocsearchdb try assert runtests testsuite functiontests runtests testsuite runtests testsuite runperf testsuite timeit tic toc cputime profile bench memory inmem pack memoize clearallmemoizedcaches clipboard computer system dos unix getenv setenv perl winqueryreg commandhistory commandwindow filebrowser workspace getpref setpref addpref rmpref ispref mex execute getchararray putchararray getfullmatrix putfullmatrix getvariable getworkspacedata putworkspacedata maximizecommandwindow minimizecommandwindow regmatlabserver enableservice mex dbmex mexext inmem ver computer mexext dbmex inmem mex mexext matlabwindows matlabmac matlablinux exit quit matlabrc startup finish prefdir preferences version ver verlessthan license ispc ismac isunix isstudent javachk usejava doc help docsearch lookfor demo echodemo)
|
10
|
-
end
|
11
|
-
end
|
12
|
-
end
|
13
|
-
end
|