The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
23 views

Computing average on a list of values for each value [migrated]

I have a huge file (50k lines) with the following format: 52370581 2116 17996781 4314 47818829 2584 61421045 2158 ... 25145813 2274 The first value can be present multiple times and I want to ...
1
vote
1answer
79 views

Is Node.js suited for compute intensive web services

I am going to create a set of web services that include very compute intensive code. The calculations can run from 1/2 a second to 20 seconds. The computations exist in C code. I would probably not ...
-6
votes
0answers
33 views

Show that the following is NP-complete [closed]

In a directed graph, the indegree of a node is the number of incoming edges and the outdegree is the number of outgoing edges. Show that the following problem is NP-complete. Given an undirected graph ...
0
votes
0answers
70 views

Find an optimal combination of rows and columns in a matrix

I have a computational problem in C++, not sure if I can ask it here, I could not find anything fitting so far. I have a vector of objects, each containing another vector with certain values. Now I ...
2
votes
1answer
72 views

Why are there a finite number of Turing machines?

In Michael Sipser's Introduction to the Theory of Computation, he states: "some languages are not decidable or even Turing recognizable, for the reason that there are uncountably many languages ...
0
votes
1answer
145 views

Why isn't the class of Turing-Recognizable languages closed under Complement?

I'm studying Turing Machines and I've already showed how Turing-Decidable is closed for the operations of Union, Intersection, Concatenation, Complement and Kleene Star. Next I did some demonstrations ...
0
votes
1answer
74 views

explaining context free grammar ambiguity for job interview

I was at a job interview, and this is the question they asked me, Are these two below ambigous? If they are, provide a string. If they are not, prove why they are not. I couldn't solve it, and would ...
0
votes
0answers
33 views

Reducing from one language to another(theory of computation)

I need to show a reduction from Linf to Lequal where Linf is {e|L(Pe) is infinite} Lequal is {(k,j)|L(Pk)=L(Pj)} To show Linf reducible to Lequal Can i show it by using this program 1)Input e ...
0
votes
0answers
46 views

Understanding of Push down automata with a difference?

So I have been given the task of creating an PDA that recognises the language a^2n b^3n | n = 0,1,2...}. Am I right in thinking that it needs to have atleast 3 times number of b's than a's? So for ...
1
vote
2answers
111 views

Is there an fast algorithm computing powers multiple a one-half?

I'm writing a program for solving of planar restricted three-body problem. Its equations are below. This function computes derivatives of position and velocity and write them to array. ...
-1
votes
1answer
40 views

Pumping Lemma's Condition 3 concept

I'm following one of the examples from my textbook on the Pumping Lemma: Let C = {w | w has an equal number of 0s and 1s} Condition 3 stipulates: |xy| <= p If |xy| <= p, then y must consist ...
3
votes
1answer
139 views

How does a finite state machine perform division?

I am taking a course on models of computation and currently we are doing finite state machines. One my tasks is to draw out a FSM that performs division of 3; to simplify the model the machine only ...
7
votes
5answers
232 views

Haskell: Computation “in a monad” — meaning?

In reading about monads, I keep seeing phrases like "computations in the Xyz monad". What does it mean for a computation to be "in" a certain monad? I think I have a fair grasp on what monads are ...
0
votes
1answer
29 views

Database suggestion (and possible readings) for heavy computational website

I'm building a website that will rely on heavy computations to make guess and suggestion on objects of objects (considering the user preferences and those of users with similar profiles). Right now ...
1
vote
3answers
111 views

Find intersection of large number of lists in python

I have a file containing space separated numbers in each line. Each line corresponds to a list of numbers. Now there are around 300,000 such lines (each line containing around 100 numbers on an ...
2
votes
2answers
184 views

how does postgres handle the bit data type?

i have a table with a column vector of type bit(2000). how does the db engine handle operations AND and OR over this values? does it simply divide into 32bit chunks (or 64, respectively) and then ...
1
vote
0answers
17 views

Is this correct non-trivial program that print itself as output? Print the following twice, the second time in quotes

This was give by Scoot Aaronsson in his lectures. Print the following, the second time in quotes . (The program) "Print the following, the second time in quotes" (The output) I don't get this. What I ...
0
votes
1answer
61 views

Is this a context-free language? [closed]

Is this a context-free language? L = { xy(xR)(yR) | x,y is an element of {0,1}* } xR means the reverse of x. I think this is a context free language. Since PDA accepts CFL, I'm trying to draw a PDA ...
0
votes
1answer
73 views

Context-free language not closed under intersection

I found this solution on Wikipedia. Shouldn't it say: j>n≥ 0 Because the intersection are elements that are common in both languages. Consider the languages L1 and L2 defined by ...
3
votes
2answers
258 views

language over {1} which is recognizable but not decidable?

What is an example of a language over the alphabet {1}* which is recognizable but not decidable? I have troubles finding an example of this. After a long search, I am still curious for the answer ...
1
vote
1answer
279 views

Using radio button in different switch to add variables in android

I was trying to make a rating type questions and i want to set the values in the radio button.. but i can't compute for the sum of the checked buttons.. this is my code.. public class MainActivity ...
1
vote
2answers
30 views

Is there any feature of programming that automatically detects computational repetition?

I'm new to programming, taking MIT's 6.00. While watching the Dynamic Programming lecture a simple question occurred to me: Is there any kind of built-in feature (for computers in general) to detect ...
2
votes
4answers
133 views

Any sheets out there describing the layout-computation of an Html page?

I'm searching for some ressources that describe how the fixed layout is computed for an Html page, but I couldn't find any. Perhaps there is a special term for it that I don't know abkout? Please ...
0
votes
1answer
71 views

Constructing Regular expression that generates a given languge

This is an example ginen in my textbook "Introduction to theory of Computation". Given that the alphabet ∑ as{0,1}, {w|every 0 in w is followed by atleast one 1}} a regular expression for it is ...
-2
votes
1answer
289 views

How to perform Particle Swarm Optimization [closed]

We have been asked to do 5 or 6 iterations of particle swarm optimisation by hand for homework, but i don't really understand how and we were given no examples. Would it be possible for someone to do ...
1
vote
2answers
267 views

Simplify matrix matlab

I'm making some matrix computation in matlab. What looks strange (to me) is that I get results like (8700286382685973*cos(q5)*sin(q4))/9007199254740992 + ...
1
vote
3answers
84 views

why does this C code outputs 1

Is there any reason why: void function_foo(){ int k[8]; function_math(k, 8); } void function_math(int *k, int i){ printf("value: %d", k[i]); } The main execute function_foo(); The ...
0
votes
2answers
344 views

Using TTR package to calculate Exponential moving average

Curious if anyone used it. I did a simple EMA operation on a time series. But wasn't able to reconcile very well. I read that the value of the update constant = 2/(N+1). I defined x = 1:20, and did ...
3
votes
2answers
84 views

Each cell wise operation based on condition in matlab

I don't know whether this is possible without iterating the matrix, but here goes the question. For any given square matrix say 'M', and a particular value say 'key'. I want to compute a new matrix ...
0
votes
2answers
81 views

Android emulator accuracy and predicting time of operation

How accurate is the Android emulator in terms of how an app will function on a physical Android device? I am an amateur developer for Android but due to circumstances, do not own an Android device ...
0
votes
2answers
602 views

Java exception invalid int for long integer

I'm currently developing a math application that makes long computations. I'm getting java.lang.NumberFormatException: Invalid int: "..." error (where the ... is replaced by a very long number) ...
4
votes
2answers
153 views

Long mathematical computations in android app

I'm an amateur developer and I'm creating an Android app that will perform long mathematical calculation (involving multiple for-loops for example). I've read on the Android Developer website that ...
3
votes
2answers
2k views

Node.js vs C++ for mathematic

I have to write a server program that implements some fuzzy logic and I choose to write it in Node.js to take advantage of its event orientation. I have to work with difficult mathematic computational ...
0
votes
0answers
92 views

Is there a tool to calculate computation power?

How exactly can I calculate computation power in Linux? If I am not wrong, computation power can be defined as the number of milliseconds it took for a single core/processor to process a thread. ...
0
votes
0answers
53 views

Compiler programming languages theory, computer usable computing and I/O parts

I started with a small theory of cmd and extensions. First of all was that it consists of compilation to object file, linkage and compilation to exe. The languages mainly consist of operators, ...
0
votes
3answers
139 views

Is this simulation appropriate for CUDA or OpenCL?

I'm asking on behalf of a friend working in numerical astrophysics. Basically what he's doing is simulating a cloud of gas. There are a finite number of cells and the timestep is defined such that ...
0
votes
0answers
91 views

mutual information -histogram tabulation

Have a query on mutual information for registration. I have tried to register one image to one reference via translating the image around and mapped the image pixel onto the reference coordinate. From ...
0
votes
3answers
91 views

Can i count the number of digits in a string with FSM?

I want to count the number of digits in a string which can include non digits(aa11aa1a). Can i solve this problem with a Finite State Machine? Can this problem be represented as regular expression? ...
2
votes
1answer
110 views

Determine elements of a matrix when sum of rows and columns are given

There is 4x4 matrix with all 4 diagonal elements zero. All other elements are non negative integers. Sum of all 4 rows and 4 columns are known individually. Is it possible to determine the remaining ...
0
votes
1answer
50 views

what is max size of string i can support in my string permutations algo if i have 1GB memory

for below mentioned string permutation algo or any other recursive algo, what is max size of string supported if i have 1 GB of dedicated memory available. public void permutate(String prefix, String ...
4
votes
2answers
107 views

In JavaScript, what are specific reasons why creating functions within a loop can be computationally wasteful?

In JavaScript, what are specific reasons why creating functions within a loop can be computationally wasteful? On page 39 of JavaScript the Good Parts, Douglas Crockford states, "Avoid creating ...
1
vote
1answer
475 views

GCD algorithms for a large integers

I looking for the information about fast GCD computation algorithms. Especially, I would like to take a look at the realizations of that. The most interesting for me: - Lehmer GCD algorithm, - ...
0
votes
1answer
194 views

Theory of Computation: Design a 2-stack PDA for this language?

Consider a language L2 = { ak bk ck | k >= 0 }. (k should be superscript) Design a 2-stack PDA for the language L2. Could anyone give me some guidance on how to go about doing this?
0
votes
1answer
207 views

time night differential computation in PHP

I'm having problems in getting the night differential of an employee. Night differential starts from 10pm to 6am. If an employee goes to work from 7pm to 5:30am there should be a night differential ...
0
votes
1answer
101 views

Adding numbers bi-weekly in javascript

Just want a help for adding numbers bi-weekly. Let's say, Start date : Jan 15, 2012 End date : May 15, 2012 Value : 300.00 What I want to accomplish is that, every 15th and last day of the ...
1
vote
3answers
239 views

Matlab: reverse of eps? Accuracy on positive weight?

eps returns the distance from 1.0 to the next largest double-precision number, so I can use it to interpret the numbers value on negative weight position. But for very large number with value on high ...
-1
votes
1answer
61 views

Compute cost of an Item? [closed]

im not sure if i say it right. my question is how can i get the COST of an item if then given is the Net and the GST?
0
votes
1answer
189 views

How to handle massive computation on websites? Web workers or CGI?

I've written a JavaScript-based Website that is able to enter, edit and solve Nonograms. As you may know, solving a nonogram is an NP-complete problem. My first attempt was pure (single threaded) ...
11
votes
3answers
723 views

Computation Constructs (Monads, Arrows, etc.)

I have become rather interested in how computation is modeled in Haskell. Several resources have described monads as "composable computation" and arrows as "abstract views of computation". I've never ...
1
vote
0answers
221 views

Principal Component Analysis in PHP

I'm looking for a class or a function, or just a piece of code that would do Principal Component Analysis (PCA) in PHP. I am interested in reducing dimensionality of some data. I know that PHP is not ...

1 2