Skip to content

Commit 83df0b9

Browse files
authoredOct 26, 2021
Partial removal (#905)
* removing partial implementations * removing languages completely
1 parent 2000ab3 commit 83df0b9

File tree

2 files changed

+0
-46
lines changed

2 files changed

+0
-46
lines changed
 

‎contents/cooley_tukey/cooley_tukey.md

-6
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,6 @@ For some reason, though, putting code to this transformation really helped me fi
8181
[import:7-13, lang:"haskell"](code/haskell/fft.hs)
8282
{% sample lang="py" %}
8383
[import:6-12, lang:"python"](code/python/fft.py)
84-
{% sample lang="scratch" %}
85-
[import:4-13, lang:"julia"](code/julia/fft.jl)
8684
{% sample lang="asm-x64" %}
8785
[import:15-74, lang:"asm-x64"](code/asm-x64/fft.s)
8886
{% sample lang="js" %}
@@ -136,8 +134,6 @@ In the end, the code looks like:
136134
[import:15-28, lang:"haskell"](code/haskell/fft.hs)
137135
{% sample lang="py" %}
138136
[import:15-26, lang:"python"](code/python/fft.py)
139-
{% sample lang="scratch" %}
140-
[import:16-32, lang:"julia"](code/julia/fft.jl)
141137
{% sample lang="asm-x64" %}
142138
[import:76-165, lang:"asm-x64"](code/asm-x64/fft.s)
143139
{% sample lang="js" %}
@@ -251,8 +247,6 @@ Note: I implemented this in Julia because the code seems more straightforward in
251247
[import, lang:"haskell"](code/haskell/fft.hs)
252248
{% sample lang="py" %}
253249
[import, lang:"python"](code/python/fft.py)
254-
{% sample lang="scratch" %}
255-
Some rather impressive scratch code was submitted by Jie and can be found here: https://scratch.mit.edu/projects/37759604/#editor
256250
{% sample lang="asm-x64" %}
257251
[import, lang:"asm-x64"](code/asm-x64/fft.s)
258252
{% sample lang="js" %}

‎contents/verlet_integration/verlet_integration.md

-40
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,6 @@ Here is what it looks like in code:
4242
[import:1-10, lang:"python"](code/python/verlet.py)
4343
{% sample lang="hs" %}
4444
[import:14-21, lang:"haskell"](code/haskell/verlet.hs)
45-
{% sample lang="scratch" %}
46-
Unfortunately, this has not yet been implemented in scratch, so here's Julia code:
47-
[import:1-13, lang:"julia"](code/julia/verlet.jl)
48-
{% sample lang="m" %}
49-
Unfortunately, this has not yet been implemented in matlab, so here's Julia code:
50-
[import:1-13, lang:"julia"](code/julia/verlet.jl)
51-
{% sample lang="LabVIEW" %}
52-
Unfortunately, this has not yet been implemented in LabVIEW, so here's Julia code:
53-
[import:1-13, lang:"julia"](code/julia/verlet.jl)
5445
{% sample lang="js" %}
5546
[import:1-14, lang:"javascript"](code/javascript/verlet.js)
5647
{% sample lang="rs" %}
@@ -100,15 +91,6 @@ However, the error for this is $$\mathcal{O}(\Delta t)$$, which is quite poor, b
10091
[import:12-23, lang:"python"](code/python/verlet.py)
10192
{% sample lang="hs" %}
10293
[import:23-28, lang:"haskell"](code/haskell/verlet.hs)
103-
{% sample lang="scratch" %}
104-
Unfortunately, this has not yet been implemented in scratch, so here's Julia code:
105-
[import:15-31, lang:"julia"](code/julia/verlet.jl)
106-
{% sample lang="m" %}
107-
Unfortunately, this has not yet been implemented in matlab, so here's Julia code:
108-
[import:15-31, lang:"julia"](code/julia/verlet.jl)
109-
{% sample lang="LabVIEW" %}
110-
Unfortunately, this has not yet been implemented in LabVIEW, so here's Julia code:
111-
[import:15-31, lang:"julia"](code/julia/verlet.jl)
11294
{% sample lang="js" %}
11395
[import:16-32, lang:"javascript"](code/javascript/verlet.js)
11496
{% sample lang="rs" %}
@@ -172,15 +154,6 @@ Here is the velocity Verlet method in code:
172154
[import:25-34, lang:"python"](code/python/verlet.py)
173155
{% sample lang="hs" %}
174156
[import:30-35, lang:"haskell"](code/haskell/verlet.hs)
175-
{% sample lang="scratch" %}
176-
Unfortunately, this has not yet been implemented in scratch, so here's Julia code:
177-
[import:33-45, lang:"julia"](code/julia/verlet.jl)
178-
{% sample lang="m" %}
179-
Unfortunately, this has not yet been implemented in matlab, so here's Julia code:
180-
[import:33-45, lang:"julia"](code/julia/verlet.jl)
181-
{% sample lang="LabVIEW" %}
182-
Unfortunately, this has not yet been implemented in LabVIEW, so here's Julia code:
183-
[import:33-45, lang:"julia"](code/julia/verlet.jl)
184157
{% sample lang="js" %}
185158
[import:34-45, lang:"javascript"](code/javascript/verlet.js)
186159
{% sample lang="rs" %}
@@ -230,19 +203,6 @@ Both of these methods work simply by iterating timestep-by-timestep and can be w
230203
[import, lang:"python"](code/python/verlet.py)
231204
{% sample lang="hs" %}
232205
[import, lang:"haskell"](code/haskell/verlet.hs)
233-
{% sample lang="scratch" %}
234-
Submitted by Jie
235-
<p>
236-
<img class="center" src="code/scratch/verlet_scratch.png" />
237-
</p>
238-
Link: [https://scratch.mit.edu/projects/173039394/](https://scratch.mit.edu/projects/173039394/)
239-
{% sample lang="m" %}
240-
[import, lang:"matlab"](code/matlab/verlet.m)
241-
{% sample lang="LabVIEW" %}
242-
Submitted by P. Mekhail
243-
<p>
244-
<img class="center" src="code/labview/verlet_labview.png" />
245-
</p>
246206
{% sample lang="js" %}
247207
[import, lang:"javascript"](code/javascript/verlet.js)
248208
{% sample lang="rs" %}

0 commit comments

Comments
 (0)
Please sign in to comment.