The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
0answers
17 views

reaction-diffusion chemical elements [closed]

I am want to make an experiment of reaction-diffusion but I cannot find enough references. If anyone knows anything except the computational part of the experiment please respond. I want to learn more ...
1
vote
2answers
166 views

Can we declare, define & assign values to a variable and use those variables in another file?

I am a beginner to C programming and I'm trying out different methods and experimenting with small programs. I have four files. two header files and two source files. I want to: Declare a variable ...
0
votes
1answer
58 views

System to organize models and results in NoSQL? [closed]

When building models, we often go through many stages of analysis from studying of relationships between candidate predictors and the response, variable selections and fitting many different models to ...
2
votes
2answers
52 views

How to calculate the # of unique player (when repeat entry is allowed)?

I am trying to calculate the number of unique player in an experiment where each player is allowed to re-enter the game. Here is what the data look like x <- read.table(header=T, text="group ...
0
votes
0answers
21 views

Windows C: How to Time Code for Experiments, or How to Have Code Self-profile

Environment specifics: Windows 7 x64, MSVS 2010 32-bit, Microsoft Visual C (not C++: #undef _cplusplus) I am working on an algorithm for my master's thesis. I am trying to start on the experiments ...
1
vote
1answer
125 views

Model-based Calibration Toolbox in Matlab 2011a 64

I am using Matlab 2011a, 64bit and looking for Model-based Calibration toolbox but I couldn't find. In the last version (2009) I just typed in the command line: "mbcmodel" and I got the toolbox. But ...
0
votes
2answers
183 views

How to create daily forms with ASP.NET MVC automatically

I have a web project with some forms in it. Every user on my web project should get an empty form ready to fill for everyday. Is there anyway to Create a simple empty form with only id, name, ...
4
votes
1answer
229 views

limit the number of cores used by erlang

I'm running experiments on a node with 2 x Quad-Core Xeon E5520 2.2GHz, 24.0GB RAM, and Erlang R15B02 (SMP enabled). I wonder if I can limit the number of cores used by the Erlang VM so that I can ...
3
votes
1answer
127 views

java clearing internal memory cache

I am trying to test a Java program that I wrote, in order to prove its efficiency. I have many different tests to run, and I am trying to be precise in the runtime analysis. The problem is that ...
-1
votes
1answer
192 views

High School Computer Science Experiment Ideas [closed]

I'm a student who is looking to do a computer science-related project for my yearly school science project. The only problem: I have no idea what I should do. Now, I've had tons of ideas for projects ...
0
votes
3answers
126 views

Can a language be written in itself? [closed]

Would it be possible to structure a language in such a way that it can be written in itself? Could you write a c compiler in c, or a python interpreter in python? And if not, could the source then be ...
0
votes
0answers
27 views

how to add commandline property in “ycsb”

How to self define parameters in ycsb? This is needed when I want to configure hbase (connected with ycsb) by setting hbase-specific parameters, which is not present in ycsb.
0
votes
0answers
76 views

Pyepl present audio and text at the same time

I am somewhat new to programming but I'm using pyepl to make an experiment where participants hear an audio file then choose one of two keys. I've gotten it to do that much, but using .present, I can ...
0
votes
2answers
100 views

How to find and eliminate sources of randomness in a Java program

I'm currently working on a genetic programming algorithm in Java. For my experiments I'm trying several setting combinations and to get an idea of the time required I run every setting combination ...
2
votes
2answers
159 views

CPU time, or User time in Java for computer science experiments?

When evaluating my algorithms against one another in regards to time taken should I use CPU or User time in Java? I used the information here: How to get CPU, system, and user time for benchmarking, ...
1
vote
1answer
175 views

Wrapping words in a SQL query string with regex

I have a database class that is written in PHP and it should take care of some things I don't want to care about. One of these features is handling the decryption of columns that are encoded with the ...
0
votes
4answers
130 views

Using Pointers to Return a Value - Program Crashes

I am new to C++ and experimenting with using pointers to return a values. I have written up a simple program, but I cannot understand why it crashes. main.cpp int main() { bool *pMyBool; ...
0
votes
3answers
139 views

Validate an html document that I wrote with document.write()

Ok first off let me state that I know I should never do this under any circumstances for a real site. Ok. That's out of the way. One of my coworkers was going off that Javascript is not a "real" ...
-1
votes
1answer
354 views

How to Build a Python Encryption Algorithm

I'm doing a computer science experiment with encryption. My goal is to write different encryption algorithms and then attack them with different techniques. I get that I have to hash the string and ...
57
votes
8answers
8k views

Which is faster : if (bool) or if(int)?

Which value is better to use? Boolean true or Integer 1? The above topic made me do some experiments with bool and int in if condition. So just out of curiosity I wrote this program: int f(int ...
0
votes
1answer
86 views

Way to store large amount of experiments and corresponding results

I have an experiment setup that produces a few csv and text files every run. In my research I run a number of these in parallel each day and trying to store and organized them in a directory ...
2
votes
1answer
286 views

How to measure the amount of data transmitted by my MPI program?

I'm experimenting my distributed clustering algorithm (implemented with MPI) on 24 computers that I set up as a cluster using BCCD (Bootable Cluster CD) that can be downloaded at http://bccd.net/. ...
3
votes
2answers
67 views

Setting up a lab to experiment with GIT

I'm a newbie (like 6 months) Linux user. I'm using Git for quite a while, and now I'd like to start learning more advanced stuff. What I'd like to learn is a variety of ways to handle/manage remotes. ...
1
vote
2answers
90 views

Running long experiments from a web interface

I'm building a research web app that runs a long batch analysis that can last hours. I'm using Grails but I think this is a general design issue. The batch process can be started by a URL, e.g. ...
0
votes
4answers
56 views

Expressions which always return true (and the compiler doesn't know)

When experimenting I often use if (true) {..} or if (false) {..} to section off chunks of code I'm playing with. The problem is that compilers these days sometimes issue a warning about unreachable ...
3
votes
2answers
1k views

Python threading unexpectedly slower

I have decided to learn how multi-threading is done in Python, and I did a comparison to see what kind of performance gain I would get on a dual-core CPU. I found that my simple multi-threaded code ...
5
votes
4answers
281 views

Experimental IDE concepts

I am interested in building a new style IDE for a side project. Mainly to do away with the normal notepad on steroids IDE. I am looking for some inspiration for things that have been tried or that ...
3
votes
1answer
41 views

Inspiring web experiments and technical demos

Probably everyone knows about Chrome Experiments: http://www.chromeexperiments.com/ that contain some stunning examples of what JS is capable of. It would be nice to compile a collection of similar ...
2
votes
3answers
428 views

Dual neural networks experiment (one logical, one emotional)?

Seeing that as as far as we know, one half of your brain is logical and the other half of your brain is emotional, and that the wants of the emotional side are fed to the logical side in order to ...
1
vote
3answers
101 views

Tools for analysing experimental data

What tools are there for analysing experimental data with a number of variables to attempt to optimise parameters for a particular parameter? This question is purposely general - I'm more asking for ...
0
votes
8answers
518 views

Existence of a table generation framework for experiments

Bounty is for the name of a software package for generating tables and running experiments with particular parameters. That is it! I am running experiments on computer programs with a number of ...
7
votes
5answers
274 views

Programming experiments

I frequently code numerous experiments to test various algorithms, libraries, or hardware. All code, dependencies, and output of these experiments need to be annotated and saved, so that I can return ...
1
vote
1answer
1k views

Creating cookie onunload (even after deleting browser cache)

Is it possible to create a cookie after a user has deleted his/her browser cache (+cookies) entirely? E.g. Predefined variables loaded into memory var userID = 1337; var IP = 222.222.222.222; var ...
11
votes
5answers
323 views

Memorable pedagogic programming experiments?

"Tell me, and I'll forget. Show me, and I'll remember. Involve me, and I'll learn." We all have participated to some experiments with a teacher, a pro or a friend who wanted to make his point ...
2
votes
13answers
458 views

Will reassigning a variable in every iteration of a loop affect performance?

Consider the following two ways of writing a loop in Java to see if a list contains a given value: Style 1 boolean found = false; for(int i = 0; i < list.length && !found; i++) { ...