Skip to content

Commit ebd4687

Browse files
committed
Updated Simulation
1 parent 2fd4999 commit ebd4687

File tree

9 files changed

+1136
-271
lines changed

9 files changed

+1136
-271
lines changed

experiment/posttest.js

Lines changed: 0 additions & 135 deletions
This file was deleted.

experiment/pretest.js

Lines changed: 0 additions & 135 deletions
This file was deleted.

experiment/simulation/csnn.html

Lines changed: 126 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,126 @@
1+
<!DOCTYPE html>
2+
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml"><head><!--Google Tag Manager--><script class="gtm">(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
3+
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
4+
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
5+
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
6+
})(window,document,'script','dataLayer','GTM-W59SWTR');</script><!--End Google Tag Manager-->
7+
<!-- charset must remain utf-8 to be handled properly by Processing -->
8+
<meta content="text/html; charset=utf-8" http-equiv="content-type"/>
9+
10+
<title>CSNNTrialBYN : Built with Processing</title>
11+
12+
<style type="text/css">
13+
/* <![CDATA[ */
14+
15+
body {
16+
margin: 60px 0px 0px 55px;
17+
font-family: verdana, geneva, arial, helvetica, sans-serif;
18+
font-size: 11px;
19+
background-color: #ddddcc;
20+
text-decoration: none;
21+
font-weight: normal;
22+
line-height: normal;
23+
}
24+
25+
a { color: #3399cc; }
26+
a:link { color: #3399cc; text-decoration: underline; }
27+
a:visited { color: #3399cc; text-decoration: underline; }
28+
a:active { color: #3399cc; text-decoration: underline; }
29+
a:hover { color: #3399cc; text-decoration: underline; }
30+
31+
/* ]]> */
32+
</style>
33+
</head>
34+
35+
<body><!--Google Tag Manager (noscript)--><noscript class="gtm"><iframe height="0" src="https://www.googletagmanager.com/ns.html?id=GTM-W59SWTR" style="display:none;visibility:hidden" width="0"></iframe></noscript><!--End Google Tag Manager (noscript)-->
36+
<div id="content">
37+
<div id="CSNNTrialBYN_container">
38+
39+
<!-- This version plays nicer with older browsers,
40+
but requires JavaScript to be enabled.
41+
http://java.sun.com/javase/6/docs/technotes/guides/jweb/deployment_advice.html -->
42+
<script src="http://www.java.com/js/deployJava.js" type="text/javascript"></script>
43+
<script type="text/javascript">
44+
/* <![CDATA[ */
45+
46+
var attributes = {
47+
code: 'CSNNTrialBYN.class',
48+
archive: 'CSNNTrialBYN.jar',
49+
width: 900,
50+
height: 670,
51+
};
52+
var parameters = {
53+
image: 'loading.gif',
54+
centerimage: 'true',
55+
};
56+
var version = '1.5';
57+
deployJava.runApplet(attributes, parameters, version);
58+
59+
/* ]]> */
60+
</script>
61+
62+
<noscript> <div>
63+
<!--[if !IE]> -->
64+
<object archive="CSNNTrialBYN.jar" classid="java:CSNNTrialBYN.class" height="670" standby="Loading Processing software..." type="application/x-java-applet" width="900">
65+
66+
<param name="archive" value="CSNNTrialBYN.jar"></param>
67+
68+
<param name="mayscript" value="true"></param>
69+
<param name="scriptable" value="true"></param>
70+
71+
<param name="image" value="loading.gif"></param>
72+
<param name="boxmessage" value="Loading Processing software..."></param>
73+
<param name="boxbgcolor" value="#FFFFFF"></param>
74+
<!--<![endif]-->
75+
76+
<!-- For more instructions on deployment,
77+
or to update the CAB file listed here, see:
78+
http://java.sun.com/javase/6/webnotes/family-clsid.html
79+
http://java.sun.com/javase/6/webnotes/install/jre/autodownload.html -->
80+
<object classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" codebase="http://java.sun.com/update/1.6.0/jinstall-6u20-windows-i586.cab" height="670" standby="Loading Processing software..." width="900">
81+
82+
<param name="code" value="CSNNTrialBYN"></param>
83+
<param name="archive" value="CSNNTrialBYN.jar"></param>
84+
85+
<param name="mayscript" value="true"></param>
86+
<param name="scriptable" value="true"></param>
87+
88+
<param name="image" value="loading.gif"></param>
89+
<param name="boxmessage" value="Loading Processing software..."></param>
90+
<param name="boxbgcolor" value="#FFFFFF"></param>
91+
92+
<p>
93+
<strong>
94+
This browser does not have a Java Plug-in.
95+
<br/>
96+
<a href="http://www.java.com/getjava" title="Download Java Plug-in">
97+
Get the latest Java Plug-in here.
98+
</a>
99+
</strong>
100+
</p>
101+
102+
</object>
103+
104+
<!--[if !IE]> -->
105+
</object>
106+
<!--<![endif]-->
107+
108+
</div> </noscript>
109+
110+
</div>
111+
112+
<p>
113+
114+
</p>
115+
116+
<p>
117+
Source code: <a href="CSNNTrialBYN.pde">CSNNTrialBYN</a>
118+
</p>
119+
120+
<p>
121+
Built with <a href="http://processing.org" title="Processing.org">Processing</a>
122+
</p>
123+
</div>
124+
125+
126+
</body></html>

0 commit comments

Comments
 (0)