List of commits:
Subject Hash Author Date (UTC)
simslope_c: added a macro to vary the noise factor b5c06450d9668b56ab0221425c55f5e2b349f406 Josiah_Mullins_E6440 2019-12-06 21:45:54
simslope1_py: fixed a typo c9ef8fdd32d121eaeb02f4e1b7ce9c6f2cd4d304 Josiah_Mullins_E6440 2019-12-06 21:11:41
simslope1_py: corrected typo 6638998ea253802d238ebb7ffb1958e386872f85 Josiah_Mullins_E6440 2019-12-06 21:08:53
simslope1_py: addded some improvments 813ea22a0487636650d979719320d838a9714520 Josiah_Mullins_E6440 2019-12-06 21:01:15
owners: added appropiate credit to original developers! 1c204a7a21884e167b5b51d6d25671104a927ecc Josiah_Mullins_E6440 2019-12-06 20:43:34
simslope0_py: removed some temp modifications. 8c1ba7cfd7d75672e0dc38e2e4abc17b8dd62da9 Josiah_Mullins_E6440 2019-12-06 18:30:28
simslope0_py: modified print statements 792110c3c83aa8ff78f7bf87ec8c01a4eacc94c7 Josiah_Mullins_E6440 2019-12-06 18:29:16
simslope0_py: optimization? 06c5626d1f26185d4f0da6bb535547228b198eab Josiah_Mullins_E6440 2019-12-06 18:21:34
simslope0_py: filename and exit dca5feb38bc896c2742e23da245c49e5c80ef30f Josiah_Mullins_E6440 2019-12-06 17:50:04
simslope_c: Output to file f8c52e106738ec13223144579d2b74aa0d290ade Josiah_Mullins_E6440 2019-12-06 17:41:09
simslope.c: type change 707e5be5af137023c28c12d54af35394cc32c9cc Josiah_Mullins_Optiplex_Mini 2019-12-01 22:21:44
Indentation 8606ab9f5e9d3b01f698a3303f5e6d39418b7bd5 Josiah_Mullins_Optiplex_Mini 2019-12-01 21:41:16
Simslope Initial commit. e9ccd3d49b4b1342341f1866a3f7a941af503b30 Josiah_Mullins_Optiplex_Mini 2019-12-01 21:24:04
Commit b5c06450d9668b56ab0221425c55f5e2b349f406 - simslope_c: added a macro to vary the noise factor
Author: Josiah_Mullins_E6440
Author date (UTC): 2019-12-06 21:45
Committer name: Josiah_Mullins_E6440
Committer date (UTC): 2019-12-06 21:45
Parent(s): c9ef8fdd32d121eaeb02f4e1b7ce9c6f2cd4d304
Signing key:
Tree: 49c9001c30b64844383d542733e0920ed7932db0
File Lines added Lines deleted
00_simslope/simslope.c 2 2
File 00_simslope/simslope.c changed (mode: 100644) (index 4bc85c7..123c443)
... ... double uniform_rand (void)
99 99
100 100 #define DATA 1000 #define DATA 1000
101 101 #define SAMPLES_PER_DATA 20 #define SAMPLES_PER_DATA 20
102
102 #define NOISE 5.0
103 103
104 104 int main(void) int main(void)
105 105 { {
 
... ... int main(void)
128 128 for (d=1; d<SAMPLES_PER_DATA; d++)//This loop gnereates datasets of size {$SAMPLES_PER_DATA}. for (d=1; d<SAMPLES_PER_DATA; d++)//This loop gnereates datasets of size {$SAMPLES_PER_DATA}.
129 129 { {
130 130 n=normal_rand(); n=normal_rand();
131 step=n*3.0+(double)slope*2; /* 3.0 => low noise, 10.0 => high noise */
131 step=n*NOISE+(double)slope*2; /* 3.0 => low noise, 10.0 => high noise */
132 132 base+=step; base+=step;
133 133 fprintf(fp,"\t%d",(int)base); fprintf(fp,"\t%d",(int)base);
134 134 } }
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/ORpKTKoVQnFhs/Public_Research

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/ORpKTKoVQnFhs/Public_Research

Clone this repository using git:
git clone git://git.rocketgit.com/user/ORpKTKoVQnFhs/Public_Research

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main