mdarray 0.4.3.pre-java → 0.5.0-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +82 -14
- data/Rakefile +8 -2
- data/doc/BinaryOperator.html +227 -0
- data/doc/BitwiseOperators.html +135 -0
- data/doc/BooleanFunctions.html +135 -0
- data/doc/BooleanMDArray.html +193 -0
- data/doc/ByteMDArray.html +271 -0
- data/doc/Colt.html +269 -0
- data/doc/ComparisonOperators.html +135 -0
- data/doc/Const.html +490 -0
- data/doc/Csv.html +589 -0
- data/doc/DDescriptive.html +4373 -0
- data/doc/DoubleMDArray.html +555 -0
- data/doc/DoubleStatList.html +256 -0
- data/doc/FastBinaryOperator.html +743 -0
- data/doc/FastBoolean.html +512 -0
- data/doc/FastUnaryOperator.html +583 -0
- data/doc/FloatMDArray.html +237 -0
- data/doc/FunctionCreation.html +520 -0
- data/doc/FunctionMap.html +813 -0
- data/doc/GenericFunctions.html +135 -0
- data/doc/IntMDArray.html +259 -0
- data/doc/LongMDArray.html +257 -0
- data/doc/MDArray.html +9639 -0
- data/doc/MDArray/Counter.html +2767 -0
- data/doc/MDArray/IteratorFast.html +872 -0
- data/doc/MDArray/IteratorFastBoolean.html +384 -0
- data/doc/MDArray/IteratorFastByte.html +373 -0
- data/doc/MDArray/IteratorFastChar.html +384 -0
- data/doc/MDArray/IteratorFastDouble.html +384 -0
- data/doc/MDArray/IteratorFastFloat.html +384 -0
- data/doc/MDArray/IteratorFastInt.html +384 -0
- data/doc/MDArray/IteratorFastLong.html +384 -0
- data/doc/MDArray/IteratorFastShort.html +384 -0
- data/doc/MDArrayTest.html +125 -0
- data/doc/NonNumericalMDArray.html +177 -0
- data/doc/NumericFunctions.html +297 -0
- data/doc/NumericalMDArray.html +278 -0
- data/doc/Operator.html +826 -0
- data/doc/Proc.html +1097 -0
- data/doc/RubyBinaryOperator.html +526 -0
- data/doc/RubyFunctions.html +232 -0
- data/doc/RubyMath.html +135 -0
- data/doc/RubyStats.html +135 -0
- data/doc/RubyUnaryOperator.html +510 -0
- data/doc/ShortMDArray.html +267 -0
- data/doc/StatList.html +1176 -0
- data/doc/StringMDArray.html +181 -0
- data/doc/StructureMDArray.html +181 -0
- data/doc/UnaryOperator.html +227 -0
- data/doc/UserFunction.html +297 -0
- data/doc/_index.html +467 -0
- data/doc/class_list.html +53 -0
- data/doc/css/common.css +1 -0
- data/doc/css/full_list.css +57 -0
- data/doc/css/style.css +338 -0
- data/doc/file.README.html +173 -0
- data/doc/file_list.html +55 -0
- data/doc/frames.html +28 -0
- data/doc/index.html +173 -0
- data/doc/js/app.js +214 -0
- data/doc/js/full_list.js +173 -0
- data/doc/js/jquery.js +4 -0
- data/doc/method_list.html +2524 -0
- data/doc/top-level-namespace.html +114 -0
- data/lib/colt/colt.rb +56 -0
- data/lib/colt/colt_mdarray.rb +95 -0
- data/lib/colt/double_descriptive.rb +636 -0
- data/lib/colt/probability.rb +12 -0
- data/lib/colt/stat_list.rb +192 -0
- data/lib/env.rb +5 -1
- data/lib/mdarray.rb +5 -0
- data/lib/mdarray/access.rb +2 -2
- data/lib/mdarray/creation.rb +34 -19
- data/lib/mdarray/csv.rb +61 -0
- data/lib/mdarray/fast_operators.rb +241 -0
- data/lib/mdarray/operators.rb +18 -0
- data/lib/mdarray/ruby_operators.rb +2 -18
- data/lib/mdarray/ruby_stats.rb +1 -1
- data/lib/mdarray/views.rb +8 -8
- data/target/helper.jar +0 -0
- data/test/colt/VALE3.csv +3437 -0
- data/test/colt/VALE3.xlsx +0 -0
- data/test/colt/VALE3_short-err.csv +20 -0
- data/test/colt/VALE3_short.csv +20 -0
- data/test/colt/VALE3_short.xlsx +0 -0
- data/test/colt/test_complete.rb +25 -0
- data/test/colt/test_stat_list.rb +128 -0
- data/test/colt/test_statistics.rb +114 -0
- data/test/complete.rb +25 -0
- data/test/env.rb +54 -30
- data/test/{arithmetic_casting.rb → mdarray/arithmetic_casting.rb} +0 -0
- data/test/{test_access.rb → mdarray/test_access.rb} +0 -0
- data/test/{test_boolean.rb → mdarray/test_boolean.rb} +0 -2
- data/test/{test_comparison.rb → mdarray/test_comparison.rb} +0 -0
- data/test/{test_complete.rb → mdarray/test_complete.rb} +3 -14
- data/test/{test_counter.rb → mdarray/test_counter.rb} +0 -0
- data/test/{test_creation.rb → mdarray/test_creation.rb} +0 -0
- data/test/{test_error.rb → mdarray/test_error.rb} +8 -5
- data/test/{test_operator.rb → mdarray/test_operator.rb} +6 -2
- data/test/{test_speed.rb → mdarray/test_performance.rb} +74 -39
- data/test/{test_printing.rb → mdarray/test_printing.rb} +0 -1
- data/test/{test_shape.rb → mdarray/test_shape.rb} +0 -0
- data/test/mdarray/test_statistics.rb +80 -0
- data/test/{test_trigonometry.rb → mdarray/test_trigonometry.rb} +0 -0
- data/test/{test_views.rb → mdarray/test_views.rb} +0 -0
- data/vendor/parallelcolt-0.10.0.jar +0 -0
- data/version.rb +1 -1
- metadata +122 -39
- data/test/test_lazy.rb +0 -52
- data/test/test_statistics.rb +0 -38
|
@@ -0,0 +1,813 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
4
|
+
<head>
|
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
6
|
+
<title>
|
|
7
|
+
Class: FunctionMap
|
|
8
|
+
|
|
9
|
+
— Documentation by YARD 0.8.5.2
|
|
10
|
+
|
|
11
|
+
</title>
|
|
12
|
+
|
|
13
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" charset="utf-8" />
|
|
14
|
+
|
|
15
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" media="screen" charset="utf-8" />
|
|
16
|
+
|
|
17
|
+
<script type="text/javascript" charset="utf-8">
|
|
18
|
+
hasFrames = window.top.frames.main ? true : false;
|
|
19
|
+
relpath = '';
|
|
20
|
+
framesUrl = "frames.html#!" + escape(window.location.href);
|
|
21
|
+
</script>
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
|
|
25
|
+
|
|
26
|
+
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
</head>
|
|
30
|
+
<body>
|
|
31
|
+
<div id="header">
|
|
32
|
+
<div id="menu">
|
|
33
|
+
|
|
34
|
+
<a href="_index.html">Index (F)</a> »
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
<span class="title">FunctionMap</span>
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
<div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
|
|
41
|
+
</div>
|
|
42
|
+
|
|
43
|
+
<div id="search">
|
|
44
|
+
|
|
45
|
+
<a class="full_list_link" id="class_list_link"
|
|
46
|
+
href="class_list.html">
|
|
47
|
+
Class List
|
|
48
|
+
</a>
|
|
49
|
+
|
|
50
|
+
<a class="full_list_link" id="method_list_link"
|
|
51
|
+
href="method_list.html">
|
|
52
|
+
Method List
|
|
53
|
+
</a>
|
|
54
|
+
|
|
55
|
+
<a class="full_list_link" id="file_list_link"
|
|
56
|
+
href="file_list.html">
|
|
57
|
+
File List
|
|
58
|
+
</a>
|
|
59
|
+
|
|
60
|
+
</div>
|
|
61
|
+
<div class="clear"></div>
|
|
62
|
+
</div>
|
|
63
|
+
|
|
64
|
+
<iframe id="search_frame"></iframe>
|
|
65
|
+
|
|
66
|
+
<div id="content"><h1>Class: FunctionMap
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
</h1>
|
|
71
|
+
|
|
72
|
+
<dl class="box">
|
|
73
|
+
|
|
74
|
+
<dt class="r1">Inherits:</dt>
|
|
75
|
+
<dd class="r1">
|
|
76
|
+
<span class="inheritName">Object</span>
|
|
77
|
+
|
|
78
|
+
<ul class="fullTree">
|
|
79
|
+
<li>Object</li>
|
|
80
|
+
|
|
81
|
+
<li class="next">FunctionMap</li>
|
|
82
|
+
|
|
83
|
+
</ul>
|
|
84
|
+
<a href="#" class="inheritanceTree">show all</a>
|
|
85
|
+
|
|
86
|
+
</dd>
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
<dt class="r2 last">Defined in:</dt>
|
|
97
|
+
<dd class="r2 last">lib/mdarray/function_map.rb</dd>
|
|
98
|
+
|
|
99
|
+
</dl>
|
|
100
|
+
<div class="clear"></div>
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
<h2>Instance Attribute Summary <small>(<a href="#" class="summary_toggle">collapse</a>)</small></h2>
|
|
107
|
+
<ul class="summary">
|
|
108
|
+
|
|
109
|
+
<li class="public ">
|
|
110
|
+
<span class="summary_signature">
|
|
111
|
+
|
|
112
|
+
<a href="#description-instance_method" title="#description (instance method)">- (Object) <strong>description</strong> </a>
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
</span>
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
<span class="summary_desc"><div class='inline'>
|
|
130
|
+
<p>Returns the value of attribute description.</p>
|
|
131
|
+
</div></span>
|
|
132
|
+
|
|
133
|
+
</li>
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
<li class="public ">
|
|
137
|
+
<span class="summary_signature">
|
|
138
|
+
|
|
139
|
+
<a href="#function-instance_method" title="#function (instance method)">- (Object) <strong>function</strong> </a>
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
</span>
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
<span class="note title readonly">readonly</span>
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
<span class="summary_desc"><div class='inline'>
|
|
159
|
+
<p>Returns the value of attribute function.</p>
|
|
160
|
+
</div></span>
|
|
161
|
+
|
|
162
|
+
</li>
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
<li class="public ">
|
|
166
|
+
<span class="summary_signature">
|
|
167
|
+
|
|
168
|
+
<a href="#input1_type-instance_method" title="#input1_type (instance method)">- (Object) <strong>input1_type</strong> </a>
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
</span>
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
<span class="note title readonly">readonly</span>
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
<span class="summary_desc"><div class='inline'>
|
|
188
|
+
<p>Returns the value of attribute input1_type.</p>
|
|
189
|
+
</div></span>
|
|
190
|
+
|
|
191
|
+
</li>
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
<li class="public ">
|
|
195
|
+
<span class="summary_signature">
|
|
196
|
+
|
|
197
|
+
<a href="#input2_type-instance_method" title="#input2_type (instance method)">- (Object) <strong>input2_type</strong> </a>
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
</span>
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
<span class="note title readonly">readonly</span>
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
<span class="summary_desc"><div class='inline'>
|
|
217
|
+
<p>Returns the value of attribute input2_type.</p>
|
|
218
|
+
</div></span>
|
|
219
|
+
|
|
220
|
+
</li>
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
<li class="public ">
|
|
224
|
+
<span class="summary_signature">
|
|
225
|
+
|
|
226
|
+
<a href="#long_name-instance_method" title="#long_name (instance method)">- (Object) <strong>long_name</strong> </a>
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
</span>
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
<span class="note title readonly">readonly</span>
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
<span class="summary_desc"><div class='inline'>
|
|
246
|
+
<p>Returns the value of attribute long_name.</p>
|
|
247
|
+
</div></span>
|
|
248
|
+
|
|
249
|
+
</li>
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
<li class="public ">
|
|
253
|
+
<span class="summary_signature">
|
|
254
|
+
|
|
255
|
+
<a href="#return_type-instance_method" title="#return_type (instance method)">- (Object) <strong>return_type</strong> </a>
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
</span>
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
<span class="note title readonly">readonly</span>
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
<span class="summary_desc"><div class='inline'>
|
|
275
|
+
<p>Returns the value of attribute return_type.</p>
|
|
276
|
+
</div></span>
|
|
277
|
+
|
|
278
|
+
</li>
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
<li class="public ">
|
|
282
|
+
<span class="summary_signature">
|
|
283
|
+
|
|
284
|
+
<a href="#scope-instance_method" title="#scope (instance method)">- (Object) <strong>scope</strong> </a>
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
</span>
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
<span class="note title readonly">readonly</span>
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
<span class="summary_desc"><div class='inline'>
|
|
304
|
+
<p>Returns the value of attribute scope.</p>
|
|
305
|
+
</div></span>
|
|
306
|
+
|
|
307
|
+
</li>
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
<li class="public ">
|
|
311
|
+
<span class="summary_signature">
|
|
312
|
+
|
|
313
|
+
<a href="#short_name-instance_method" title="#short_name (instance method)">- (Object) <strong>short_name</strong> </a>
|
|
314
|
+
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
</span>
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
<span class="note title readonly">readonly</span>
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
<span class="summary_desc"><div class='inline'>
|
|
333
|
+
<p>Returns the value of attribute short_name.</p>
|
|
334
|
+
</div></span>
|
|
335
|
+
|
|
336
|
+
</li>
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
</ul>
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
<h2>
|
|
346
|
+
Instance Method Summary
|
|
347
|
+
<small>(<a href="#" class="summary_toggle">collapse</a>)</small>
|
|
348
|
+
</h2>
|
|
349
|
+
|
|
350
|
+
<ul class="summary">
|
|
351
|
+
|
|
352
|
+
<li class="public ">
|
|
353
|
+
<span class="summary_signature">
|
|
354
|
+
|
|
355
|
+
<a href="#initialize-instance_method" title="#initialize (instance method)">- (FunctionMap) <strong>initialize</strong>(short_name, long_name, scope, function, return_type, input1_type, input2_type) </a>
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
</span>
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+
<span class="note title constructor">constructor</span>
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
<span class="summary_desc"><div class='inline'>
|
|
372
|
+
<p>????????????????????????????.</p>
|
|
373
|
+
</div></span>
|
|
374
|
+
|
|
375
|
+
</li>
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
</ul>
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
<div id="constructor_details" class="method_details_list">
|
|
382
|
+
<h2>Constructor Details</h2>
|
|
383
|
+
|
|
384
|
+
<div class="method_details first">
|
|
385
|
+
<h3 class="signature first" id="initialize-instance_method">
|
|
386
|
+
|
|
387
|
+
- (<tt><span class='object_link'><a href="" title="FunctionMap (class)">FunctionMap</a></span></tt>) <strong>initialize</strong>(short_name, long_name, scope, function, return_type, input1_type, input2_type)
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
</h3><div class="docstring">
|
|
394
|
+
<div class="discussion">
|
|
395
|
+
<hr style="height: 10px">
|
|
396
|
+
<hr style="height: 10px">
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
</div>
|
|
400
|
+
</div>
|
|
401
|
+
<div class="tags">
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
</div><table class="source_code">
|
|
405
|
+
<tr>
|
|
406
|
+
<td>
|
|
407
|
+
<pre class="lines">
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
42
|
|
411
|
+
43
|
|
412
|
+
44
|
|
413
|
+
45
|
|
414
|
+
46
|
|
415
|
+
47
|
|
416
|
+
48
|
|
417
|
+
49
|
|
418
|
+
50
|
|
419
|
+
51
|
|
420
|
+
52
|
|
421
|
+
53</pre>
|
|
422
|
+
</td>
|
|
423
|
+
<td>
|
|
424
|
+
<pre class="code"><span class="info file"># File 'lib/mdarray/function_map.rb', line 42</span>
|
|
425
|
+
|
|
426
|
+
<span class='rubyid_def def kw'>def</span> <span class='rubyid_initialize identifier id'>initialize</span><span class='lparen token'>(</span><span class='rubyid_short_name identifier id'>short_name</span><span class='comma token'>,</span> <span class='rubyid_long_name identifier id'>long_name</span><span class='comma token'>,</span> <span class='rubyid_scope identifier id'>scope</span><span class='comma token'>,</span> <span class='rubyid_function identifier id'>function</span><span class='comma token'>,</span> <span class='rubyid_return_type identifier id'>return_type</span><span class='comma token'>,</span> <span class='rubyid_input1_type identifier id'>input1_type</span><span class='comma token'>,</span>
|
|
427
|
+
<span class='rubyid_input2_type identifier id'>input2_type</span><span class='rparen token'>)</span>
|
|
428
|
+
|
|
429
|
+
<span class='rubyid_@short_name ivar id'>@short_name</span> <span class='assign token'>=</span> <span class='rubyid_short_name identifier id'>short_name</span>
|
|
430
|
+
<span class='rubyid_@long_name ivar id'>@long_name</span> <span class='assign token'>=</span> <span class='rubyid_long_name identifier id'>long_name</span>
|
|
431
|
+
<span class='rubyid_@scope ivar id'>@scope</span> <span class='assign token'>=</span> <span class='rubyid_scope identifier id'>scope</span>
|
|
432
|
+
<span class='rubyid_@function ivar id'>@function</span> <span class='assign token'>=</span> <span class='rubyid_function identifier id'>function</span>
|
|
433
|
+
<span class='rubyid_@return_type ivar id'>@return_type</span> <span class='assign token'>=</span> <span class='rubyid_return_type identifier id'>return_type</span>
|
|
434
|
+
<span class='rubyid_@input1_type ivar id'>@input1_type</span> <span class='assign token'>=</span> <span class='rubyid_input1_type identifier id'>input1_type</span>
|
|
435
|
+
<span class='rubyid_@input2_type ivar id'>@input2_type</span> <span class='assign token'>=</span> <span class='rubyid_input2_type identifier id'>input2_type</span>
|
|
436
|
+
|
|
437
|
+
<span class='rubyid_end end kw'>end</span>
|
|
438
|
+
</pre>
|
|
439
|
+
</td>
|
|
440
|
+
</tr>
|
|
441
|
+
</table>
|
|
442
|
+
</div>
|
|
443
|
+
|
|
444
|
+
</div>
|
|
445
|
+
|
|
446
|
+
<div id="instance_attr_details" class="attr_details">
|
|
447
|
+
<h2>Instance Attribute Details</h2>
|
|
448
|
+
|
|
449
|
+
|
|
450
|
+
<span id="description=-instance_method"></span>
|
|
451
|
+
<div class="method_details first">
|
|
452
|
+
<h3 class="signature first" id="description-instance_method">
|
|
453
|
+
|
|
454
|
+
- (<tt>Object</tt>) <strong>description</strong>
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
</h3><div class="docstring">
|
|
461
|
+
<div class="discussion">
|
|
462
|
+
|
|
463
|
+
<p>Returns the value of attribute description</p>
|
|
464
|
+
|
|
465
|
+
|
|
466
|
+
</div>
|
|
467
|
+
</div>
|
|
468
|
+
<div class="tags">
|
|
469
|
+
|
|
470
|
+
|
|
471
|
+
</div><table class="source_code">
|
|
472
|
+
<tr>
|
|
473
|
+
<td>
|
|
474
|
+
<pre class="lines">
|
|
475
|
+
|
|
476
|
+
|
|
477
|
+
36
|
|
478
|
+
37
|
|
479
|
+
38</pre>
|
|
480
|
+
</td>
|
|
481
|
+
<td>
|
|
482
|
+
<pre class="code"><span class="info file"># File 'lib/mdarray/function_map.rb', line 36</span>
|
|
483
|
+
|
|
484
|
+
<span class='rubyid_def def kw'>def</span> <span class='rubyid_description identifier id'>description</span>
|
|
485
|
+
<span class='rubyid_@description ivar id'>@description</span>
|
|
486
|
+
<span class='rubyid_end end kw'>end</span>
|
|
487
|
+
</pre>
|
|
488
|
+
</td>
|
|
489
|
+
</tr>
|
|
490
|
+
</table>
|
|
491
|
+
</div>
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
<span id=""></span>
|
|
495
|
+
<div class="method_details ">
|
|
496
|
+
<h3 class="signature " id="function-instance_method">
|
|
497
|
+
|
|
498
|
+
- (<tt>Object</tt>) <strong>function</strong> <span class="extras">(readonly)</span>
|
|
499
|
+
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
|
|
503
|
+
|
|
504
|
+
</h3><div class="docstring">
|
|
505
|
+
<div class="discussion">
|
|
506
|
+
|
|
507
|
+
<p>Returns the value of attribute function</p>
|
|
508
|
+
|
|
509
|
+
|
|
510
|
+
</div>
|
|
511
|
+
</div>
|
|
512
|
+
<div class="tags">
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
</div><table class="source_code">
|
|
516
|
+
<tr>
|
|
517
|
+
<td>
|
|
518
|
+
<pre class="lines">
|
|
519
|
+
|
|
520
|
+
|
|
521
|
+
31
|
|
522
|
+
32
|
|
523
|
+
33</pre>
|
|
524
|
+
</td>
|
|
525
|
+
<td>
|
|
526
|
+
<pre class="code"><span class="info file"># File 'lib/mdarray/function_map.rb', line 31</span>
|
|
527
|
+
|
|
528
|
+
<span class='rubyid_def def kw'>def</span> <span class='rubyid_function identifier id'>function</span>
|
|
529
|
+
<span class='rubyid_@function ivar id'>@function</span>
|
|
530
|
+
<span class='rubyid_end end kw'>end</span>
|
|
531
|
+
</pre>
|
|
532
|
+
</td>
|
|
533
|
+
</tr>
|
|
534
|
+
</table>
|
|
535
|
+
</div>
|
|
536
|
+
|
|
537
|
+
|
|
538
|
+
<span id=""></span>
|
|
539
|
+
<div class="method_details ">
|
|
540
|
+
<h3 class="signature " id="input1_type-instance_method">
|
|
541
|
+
|
|
542
|
+
- (<tt>Object</tt>) <strong>input1_type</strong> <span class="extras">(readonly)</span>
|
|
543
|
+
|
|
544
|
+
|
|
545
|
+
|
|
546
|
+
|
|
547
|
+
|
|
548
|
+
</h3><div class="docstring">
|
|
549
|
+
<div class="discussion">
|
|
550
|
+
|
|
551
|
+
<p>Returns the value of attribute input1_type</p>
|
|
552
|
+
|
|
553
|
+
|
|
554
|
+
</div>
|
|
555
|
+
</div>
|
|
556
|
+
<div class="tags">
|
|
557
|
+
|
|
558
|
+
|
|
559
|
+
</div><table class="source_code">
|
|
560
|
+
<tr>
|
|
561
|
+
<td>
|
|
562
|
+
<pre class="lines">
|
|
563
|
+
|
|
564
|
+
|
|
565
|
+
33
|
|
566
|
+
34
|
|
567
|
+
35</pre>
|
|
568
|
+
</td>
|
|
569
|
+
<td>
|
|
570
|
+
<pre class="code"><span class="info file"># File 'lib/mdarray/function_map.rb', line 33</span>
|
|
571
|
+
|
|
572
|
+
<span class='rubyid_def def kw'>def</span> <span class='rubyid_input1_type identifier id'>input1_type</span>
|
|
573
|
+
<span class='rubyid_@input1_type ivar id'>@input1_type</span>
|
|
574
|
+
<span class='rubyid_end end kw'>end</span>
|
|
575
|
+
</pre>
|
|
576
|
+
</td>
|
|
577
|
+
</tr>
|
|
578
|
+
</table>
|
|
579
|
+
</div>
|
|
580
|
+
|
|
581
|
+
|
|
582
|
+
<span id=""></span>
|
|
583
|
+
<div class="method_details ">
|
|
584
|
+
<h3 class="signature " id="input2_type-instance_method">
|
|
585
|
+
|
|
586
|
+
- (<tt>Object</tt>) <strong>input2_type</strong> <span class="extras">(readonly)</span>
|
|
587
|
+
|
|
588
|
+
|
|
589
|
+
|
|
590
|
+
|
|
591
|
+
|
|
592
|
+
</h3><div class="docstring">
|
|
593
|
+
<div class="discussion">
|
|
594
|
+
|
|
595
|
+
<p>Returns the value of attribute input2_type</p>
|
|
596
|
+
|
|
597
|
+
|
|
598
|
+
</div>
|
|
599
|
+
</div>
|
|
600
|
+
<div class="tags">
|
|
601
|
+
|
|
602
|
+
|
|
603
|
+
</div><table class="source_code">
|
|
604
|
+
<tr>
|
|
605
|
+
<td>
|
|
606
|
+
<pre class="lines">
|
|
607
|
+
|
|
608
|
+
|
|
609
|
+
34
|
|
610
|
+
35
|
|
611
|
+
36</pre>
|
|
612
|
+
</td>
|
|
613
|
+
<td>
|
|
614
|
+
<pre class="code"><span class="info file"># File 'lib/mdarray/function_map.rb', line 34</span>
|
|
615
|
+
|
|
616
|
+
<span class='rubyid_def def kw'>def</span> <span class='rubyid_input2_type identifier id'>input2_type</span>
|
|
617
|
+
<span class='rubyid_@input2_type ivar id'>@input2_type</span>
|
|
618
|
+
<span class='rubyid_end end kw'>end</span>
|
|
619
|
+
</pre>
|
|
620
|
+
</td>
|
|
621
|
+
</tr>
|
|
622
|
+
</table>
|
|
623
|
+
</div>
|
|
624
|
+
|
|
625
|
+
|
|
626
|
+
<span id=""></span>
|
|
627
|
+
<div class="method_details ">
|
|
628
|
+
<h3 class="signature " id="long_name-instance_method">
|
|
629
|
+
|
|
630
|
+
- (<tt>Object</tt>) <strong>long_name</strong> <span class="extras">(readonly)</span>
|
|
631
|
+
|
|
632
|
+
|
|
633
|
+
|
|
634
|
+
|
|
635
|
+
|
|
636
|
+
</h3><div class="docstring">
|
|
637
|
+
<div class="discussion">
|
|
638
|
+
|
|
639
|
+
<p>Returns the value of attribute long_name</p>
|
|
640
|
+
|
|
641
|
+
|
|
642
|
+
</div>
|
|
643
|
+
</div>
|
|
644
|
+
<div class="tags">
|
|
645
|
+
|
|
646
|
+
|
|
647
|
+
</div><table class="source_code">
|
|
648
|
+
<tr>
|
|
649
|
+
<td>
|
|
650
|
+
<pre class="lines">
|
|
651
|
+
|
|
652
|
+
|
|
653
|
+
29
|
|
654
|
+
30
|
|
655
|
+
31</pre>
|
|
656
|
+
</td>
|
|
657
|
+
<td>
|
|
658
|
+
<pre class="code"><span class="info file"># File 'lib/mdarray/function_map.rb', line 29</span>
|
|
659
|
+
|
|
660
|
+
<span class='rubyid_def def kw'>def</span> <span class='rubyid_long_name identifier id'>long_name</span>
|
|
661
|
+
<span class='rubyid_@long_name ivar id'>@long_name</span>
|
|
662
|
+
<span class='rubyid_end end kw'>end</span>
|
|
663
|
+
</pre>
|
|
664
|
+
</td>
|
|
665
|
+
</tr>
|
|
666
|
+
</table>
|
|
667
|
+
</div>
|
|
668
|
+
|
|
669
|
+
|
|
670
|
+
<span id=""></span>
|
|
671
|
+
<div class="method_details ">
|
|
672
|
+
<h3 class="signature " id="return_type-instance_method">
|
|
673
|
+
|
|
674
|
+
- (<tt>Object</tt>) <strong>return_type</strong> <span class="extras">(readonly)</span>
|
|
675
|
+
|
|
676
|
+
|
|
677
|
+
|
|
678
|
+
|
|
679
|
+
|
|
680
|
+
</h3><div class="docstring">
|
|
681
|
+
<div class="discussion">
|
|
682
|
+
|
|
683
|
+
<p>Returns the value of attribute return_type</p>
|
|
684
|
+
|
|
685
|
+
|
|
686
|
+
</div>
|
|
687
|
+
</div>
|
|
688
|
+
<div class="tags">
|
|
689
|
+
|
|
690
|
+
|
|
691
|
+
</div><table class="source_code">
|
|
692
|
+
<tr>
|
|
693
|
+
<td>
|
|
694
|
+
<pre class="lines">
|
|
695
|
+
|
|
696
|
+
|
|
697
|
+
32
|
|
698
|
+
33
|
|
699
|
+
34</pre>
|
|
700
|
+
</td>
|
|
701
|
+
<td>
|
|
702
|
+
<pre class="code"><span class="info file"># File 'lib/mdarray/function_map.rb', line 32</span>
|
|
703
|
+
|
|
704
|
+
<span class='rubyid_def def kw'>def</span> <span class='rubyid_return_type identifier id'>return_type</span>
|
|
705
|
+
<span class='rubyid_@return_type ivar id'>@return_type</span>
|
|
706
|
+
<span class='rubyid_end end kw'>end</span>
|
|
707
|
+
</pre>
|
|
708
|
+
</td>
|
|
709
|
+
</tr>
|
|
710
|
+
</table>
|
|
711
|
+
</div>
|
|
712
|
+
|
|
713
|
+
|
|
714
|
+
<span id=""></span>
|
|
715
|
+
<div class="method_details ">
|
|
716
|
+
<h3 class="signature " id="scope-instance_method">
|
|
717
|
+
|
|
718
|
+
- (<tt>Object</tt>) <strong>scope</strong> <span class="extras">(readonly)</span>
|
|
719
|
+
|
|
720
|
+
|
|
721
|
+
|
|
722
|
+
|
|
723
|
+
|
|
724
|
+
</h3><div class="docstring">
|
|
725
|
+
<div class="discussion">
|
|
726
|
+
|
|
727
|
+
<p>Returns the value of attribute scope</p>
|
|
728
|
+
|
|
729
|
+
|
|
730
|
+
</div>
|
|
731
|
+
</div>
|
|
732
|
+
<div class="tags">
|
|
733
|
+
|
|
734
|
+
|
|
735
|
+
</div><table class="source_code">
|
|
736
|
+
<tr>
|
|
737
|
+
<td>
|
|
738
|
+
<pre class="lines">
|
|
739
|
+
|
|
740
|
+
|
|
741
|
+
30
|
|
742
|
+
31
|
|
743
|
+
32</pre>
|
|
744
|
+
</td>
|
|
745
|
+
<td>
|
|
746
|
+
<pre class="code"><span class="info file"># File 'lib/mdarray/function_map.rb', line 30</span>
|
|
747
|
+
|
|
748
|
+
<span class='rubyid_def def kw'>def</span> <span class='rubyid_scope identifier id'>scope</span>
|
|
749
|
+
<span class='rubyid_@scope ivar id'>@scope</span>
|
|
750
|
+
<span class='rubyid_end end kw'>end</span>
|
|
751
|
+
</pre>
|
|
752
|
+
</td>
|
|
753
|
+
</tr>
|
|
754
|
+
</table>
|
|
755
|
+
</div>
|
|
756
|
+
|
|
757
|
+
|
|
758
|
+
<span id=""></span>
|
|
759
|
+
<div class="method_details ">
|
|
760
|
+
<h3 class="signature " id="short_name-instance_method">
|
|
761
|
+
|
|
762
|
+
- (<tt>Object</tt>) <strong>short_name</strong> <span class="extras">(readonly)</span>
|
|
763
|
+
|
|
764
|
+
|
|
765
|
+
|
|
766
|
+
|
|
767
|
+
|
|
768
|
+
</h3><div class="docstring">
|
|
769
|
+
<div class="discussion">
|
|
770
|
+
|
|
771
|
+
<p>Returns the value of attribute short_name</p>
|
|
772
|
+
|
|
773
|
+
|
|
774
|
+
</div>
|
|
775
|
+
</div>
|
|
776
|
+
<div class="tags">
|
|
777
|
+
|
|
778
|
+
|
|
779
|
+
</div><table class="source_code">
|
|
780
|
+
<tr>
|
|
781
|
+
<td>
|
|
782
|
+
<pre class="lines">
|
|
783
|
+
|
|
784
|
+
|
|
785
|
+
28
|
|
786
|
+
29
|
|
787
|
+
30</pre>
|
|
788
|
+
</td>
|
|
789
|
+
<td>
|
|
790
|
+
<pre class="code"><span class="info file"># File 'lib/mdarray/function_map.rb', line 28</span>
|
|
791
|
+
|
|
792
|
+
<span class='rubyid_def def kw'>def</span> <span class='rubyid_short_name identifier id'>short_name</span>
|
|
793
|
+
<span class='rubyid_@short_name ivar id'>@short_name</span>
|
|
794
|
+
<span class='rubyid_end end kw'>end</span>
|
|
795
|
+
</pre>
|
|
796
|
+
</td>
|
|
797
|
+
</tr>
|
|
798
|
+
</table>
|
|
799
|
+
</div>
|
|
800
|
+
|
|
801
|
+
</div>
|
|
802
|
+
|
|
803
|
+
|
|
804
|
+
</div>
|
|
805
|
+
|
|
806
|
+
<div id="footer">
|
|
807
|
+
Generated on Thu May 16 12:48:41 2013 by
|
|
808
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
809
|
+
0.8.5.2 (ruby-1.9.3).
|
|
810
|
+
</div>
|
|
811
|
+
|
|
812
|
+
</body>
|
|
813
|
+
</html>
|