Skip to content

Commit f12467b

Browse files
committed
first commit
1 parent 0472f09 commit f12467b

File tree

238 files changed

+408953
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

238 files changed

+408953
-0
lines changed

_config.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
title: Ruby/Numo::NArray
2+
description: Numerical N-dimensional array class for Ruby, similar to numpy.ndarray.
3+
google_analytics:
4+
show_downloads: true
5+
theme: jekyll-theme-cayman
6+
7+
gems:
8+
- jekyll-mentions

ffte/index.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# FFTE interface for Ruby with Numo::NArray
2+
3+
## FFTE
4+
* Package to compute Discrete Fourier Transforms of
5+
1-, 2- and 3- dimensional sequences of length (2^p)*(3^q)*(5^r),
6+
developed by Prof. Daisuke Takahashi at University of Tsukuba.
7+
* FFTE site: [FFTE web site](http://www.ffte.jp/)
8+
9+
## Ruby wrapper
10+
* [GitHub site](https://github.com/ruby-numo/numo-ffte)
11+
* [Tentative API Document](http://ruby-numo.github.io/ffte/yard/frames.html)
12+
13+
## Installation
14+
* FORTRAN compiler is required to build FFTE (gfortran, etc).
15+
* Install [Numo::NArray](https://github.com/ruby-numo/narray)
16+
* Install Numo::FFTE:
17+
```shell
18+
$ git clone git://github.com/ruby-numo/numo-ffte.git
19+
$ cd ffte
20+
$ rake build
21+
$ gem install pkg/numo-ffte-*.gem
22+
```
23+
24+
## License
25+
FFTE License:
26+
```
27+
Copyright(C), 2000-2004, 2008-2014, Daisuke Takahashi
28+
You may use, copy, modify this code for any purpose (include
29+
commercial use) and without fee.
30+
You may distribute this ORIGINAL package.
31+
```

ffte/yard/Numo.html

Lines changed: 115 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>
7+
Module: Numo
8+
9+
&mdash; Documentation by YARD 0.9.12
10+
11+
</title>
12+
13+
<link rel="stylesheet" href="css/style.css" type="text/css" charset="utf-8" />
14+
15+
<link rel="stylesheet" href="css/common.css" type="text/css" charset="utf-8" />
16+
17+
<script type="text/javascript" charset="utf-8">
18+
pathId = "Numo";
19+
relpath = '';
20+
</script>
21+
22+
23+
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
24+
25+
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
26+
27+
28+
</head>
29+
<body>
30+
<div class="nav_wrap">
31+
<iframe id="nav" src="class_list.html?1"></iframe>
32+
<div id="resizer"></div>
33+
</div>
34+
35+
<div id="main" tabindex="-1">
36+
<div id="header">
37+
<div id="menu">
38+
39+
<a href="x_index.html">Index (N)</a> &raquo;
40+
41+
42+
<span class="title">Numo</span>
43+
44+
</div>
45+
46+
<div id="search">
47+
48+
<a class="full_list_link" id="class_list_link"
49+
href="class_list.html">
50+
51+
<svg width="24" height="24">
52+
<rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
53+
<rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
54+
<rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
55+
</svg>
56+
</a>
57+
58+
</div>
59+
<div class="clear"></div>
60+
</div>
61+
62+
<div id="content"><h1>Module: Numo
63+
64+
65+
66+
</h1>
67+
<div class="box_info">
68+
69+
70+
71+
72+
73+
74+
75+
76+
77+
78+
79+
<dl>
80+
<dt>Defined in:</dt>
81+
<dd>ext/numo/ffte/ffte.c</dd>
82+
</dl>
83+
84+
</div>
85+
86+
<h2>Defined Under Namespace</h2>
87+
<p class="children">
88+
89+
90+
<strong class="modules">Modules:</strong> <span class='object_link'><a href="Numo/FFTE.html" title="Numo::FFTE (module)">FFTE</a></span>
91+
92+
93+
94+
95+
</p>
96+
97+
98+
99+
100+
101+
102+
103+
104+
105+
</div>
106+
107+
<div id="footer">
108+
Generated on Thu Jan 18 17:33:01 2018 by
109+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
110+
0.9.12 (ruby-2.5.0).
111+
</div>
112+
113+
</div>
114+
</body>
115+
</html>

0 commit comments

Comments
 (0)