The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
28 views

How can/Can I handle math operations between two instances of a class in c#

I have a 2D vector class and I have a function that multiplies vectors, one the adds, divides, ect. I was wondering if instead of calling a function, if it would be possible to control what happens ...
-3
votes
1answer
17 views

Reset arraylist object property for all objects

I'm having an arraylist which contains object of class X. Class x has property name & desc. When I pass this object to a method, it needs to set all class object(X) description as 'MyDescription'. ...
1
vote
1answer
41 views

How operations are performed for dynamic array?

I have studied everywhere in books about Dymanic arrays. I have used them in STL of C++. But I am still unclear about what are Dynamic arrays. How the operations over Dynamic arrays are implemented.
-3
votes
0answers
50 views

is shiny application stable enough for building prototypes for big data analytics? [closed]

I am a student Intern at a big apparel retailer/manufacturer in the IT Innovation team. While we are developing a Predictive model based on R and presenting it via Shiny, I wonder if the code (around ...
0
votes
3answers
18 views

How To Run Eclipse Debugger Mode to See Order of Operations?

In a previous question I had asked about recursion one of the responses recommended that I use debugger mode to see the order of operations. I had a few more order of operations questions, but figured ...
0
votes
2answers
47 views

how to avoid inaccuracy in multiplications and divisions in python

I am working with python and playing with multiplications and divisions but I can't get the accuracy that I want with this operations. The following example may help to reach my point. Let a = 3 and ...
1
vote
2answers
23 views

Manipulating Bit-wise Operations

There is this puzzle question of creating an equivalent bit-wise & with only | and ~ operators. I've been doing brute force combinations of | and ~ using 6 (0110) and 5 (0101) trying to get 4 ...
0
votes
0answers
17 views

1 Excel sheet into n number of sheets based on rows and email it

I have an excel sheet with 5000rows of data column 1 has unique id column 2 has supplier's name column 3 has supplier's email my job is to divide the 5000 rows into 8 rows sets each(i.e., 5000/8 = ...
0
votes
1answer
104 views

Datastore Read Operations Calculation

So I am currently performing a test, to estimate how much can my Google app engine work, without going over quotas. This is my test: I have in the datastore an entitity, that according to my local ...
0
votes
1answer
32 views

python pyinotify moved files

I am using this code to detect when files/dirs are created in a folder. It works fine when new files/dirs are created in the specified folder. But it doesn't notify or log files/dirs when they are ...
0
votes
3answers
120 views

Matrix Operations?

As I am a SCHEME beginner, I am having a tough time figuring out how to work with matrices. I am unsure on how to do the following: A) Given a matrix, return the dimensions of said matrix EX:// '(2 ...
3
votes
1answer
121 views

Set operators not provided by Data.Vector of Haskell, what is the reason

My application involves heavy array operations (e.g. log(1) indexing), thus Data.Vector and Data.Vector.Unboxed are preferred to Data.List. It also involves many set operations (e.g. intersectBy), ...
0
votes
1answer
86 views

WCF Test Client service operations not updated

I am quite new in WCF. I am creating a new WCF service. I initially had 1 operation. But after some time I decided to add two more. The 2 new operations doesn't appear in the Microsoft WCF test ...
0
votes
1answer
31 views

How to TDD with .Net Data Services and Service Operations

My current solution is to create a class that has my service/data business logic, test that with a local db (mdf) and then wrap that class with identical functions from the data service class. public ...
0
votes
1answer
70 views

Is it possible to apply user defined functions to series in pandas?

If we have two series s1 and s2 we can apply arithmetic operations to them: s1 + s2 or s1*s2. The arithmetic operation will be applied pairwise (assuming that the two series have the same length) as a ...
1
vote
1answer
99 views

Arithmetic operations on integers in vhdl

I'm trying to do a few mathematical operations on integers in a piece of vhdl code but when i try to compile the tool says "0 definitions of operator "+" match here". Here is what i'm trying to do: ...
-2
votes
3answers
157 views

c++ sparse vector

Question 1) I have a large sparse vector of doubles in c++, I need to efficiently parse out the indices of the non zero elements from the vector. I can obviously loop over the length and do it, any ...
0
votes
0answers
121 views

UI workflow : visually create a sequence of instructions

any recommendations about a user interface that let users create their own workflows (an instruction in the form of a sequence of tasks or operations) for a set of given tasks?. I'm thinking in ...
-3
votes
2answers
111 views

How can I list all the combinations that meet certain criteria using visual basic on excel?

Which are the combinations that the sum of each digit is equal to 8 or less, from 1 to 88,888,888? For example, 70000001 = 7+0+0+0+0+0+0+1 = 8 Should be on the list 00000021 = 0+0+0+0+0+0+2+1 = 3 ...
2
votes
1answer
112 views

Unchecked or Unsafe operations homework

In my most recent class assignment we've been working with generics and I have been receiving this warning: Note: Selector.java uses unchecked or unsafe operations. Note: Recompile with ...
0
votes
0answers
115 views

gnuplot: how to combine 2 different data sets with different x spacing and operate with them

Here it is my problem. I have two files e.g. file1 and file2, with 2 columns each. They're meant to represent the same magnitude with different approximation. But I don't have the points at the same x ...
0
votes
1answer
114 views

Invalid operations to binary expression ('id' and 'id')

I have a array fetched from the core data and trying to do some simple calculation but getting errors of Invalid operations to binary expression pop_cum[i]= (pop_ln_array[i-1] + pop_ln_array[i]); ...
1
vote
0answers
64 views

Android Thread for multiple semi-heavy operations

I'm working on an application where I have a ListView and in some circumstances I want to update it every second. The reason I'm doing this is I want to tell the user how many seconds remained until a ...
0
votes
0answers
104 views

C# File Stream Conflicts with Timer

I'm coding a program for recording security logs in c#. But there are several problems. First i create a .txt file to record logs. With: FileStream fs1 = File.Create("C:\\" + filename + ".txt"); ...
0
votes
0answers
183 views

Google N gram Java API

I have manged to get some big chunk of Google N gram corpus on my machine. Now, I need to work with this data with help of Java API. Although,such an API I couldn't locate on the internet, I wish to ...
1
vote
1answer
326 views

JAVA operations on arrays

Newbie question, sorry guys. So, I have to solve this problem but I'm not a Java developer: An array A consisting of N non-negative integers is given. For elements A[P] and A[Q] that are distinct, ...
0
votes
1answer
72 views

Which functions and operations are allowed in parallel block?

Code: double x(){return (double)rand()/(double)RAND_MAX;} double y(){return (double)rand()/(double)RAND_MAX;} double z(){return (double)rand()/(double)RAND_MAX;} int d(double x, double y, double z){ ...
0
votes
0answers
14 views

web operation commands, where to find etc ops code or commands like chef

I am going to be doing web development and I was thinking about creating my own unix commands that help assist with deploying websites from staging to production servers and just moving applications ...
2
votes
2answers
113 views

R populating a vector

I have a vector of zeros, say of length 10. So v = rep(0,10) I want to populate some values of the vector, on the basis of a set of indexes in v1 and another vector v2 that actually has the values ...
0
votes
0answers
90 views

Java Calc, how would I be able to handle additional input?

I am making a different type of calculator in java (reverse polish notation). I am in the stage of exceptions in case of wrong user input. I wanted to know how I would be able to display the result ...
-1
votes
1answer
104 views

System calls in linux kernel [closed]

What are three of the basic file operations provided via system calls in the Linux kernel?
4
votes
2answers
290 views

Multiplying Rows and Columns of Python Sparse Matrix by elements in an Array

I have a numpy array such as: array = [0.2, 0.3, 0.4] (this vector is actually size 300k dense, I'm just illustrating with simple examples) and a sparse symmetric matrix created using Scipy such ...
1
vote
1answer
72 views

Trying to pull values out of hash table based on binary value in Powershell

Ok have an interesting problem I am working on at work. We are migrating our user, app, and shared storage to a completely different system; however perms were set up with a mix of both local groups ...
0
votes
2answers
162 views

Can any one explain how to Understanding Datastore Read Costs in App Engine?

I am doing geoquery among 300 user entities with a result range 10. I've maked a query for 120 times. For each query I got 10 user entity objects. After this my app engine read operations reached 52% ...
0
votes
2answers
72 views

Multi Bit TCP Request in Java

I am trying to make a tcp request in Java to a existing TCP server that is already available. the interface specification is: Field Length Type Length 2 bytes 16-bits ...
0
votes
1answer
157 views

Hint for lookup table set bit count algorithm

I am looking at solution for the set bit count problem (given a binary number, how to efficiently count how many bits are set). Here, ...
1
vote
2answers
187 views

Bitwise Operation confusion

Firstly, let me just state for the record that this is in prep for a midterm I have Wednesday. I'm taking a C Programming course and we've barely even touched Bitwise Operations, but we're being ...
3
votes
2answers
90 views

Cast some light on population count algorithm

I looked for good methods to do popcount (count of set bits). I found this one, here http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetKernighan unsigned int v; // count the number of ...
0
votes
2answers
119 views

Print five strings from mysql operations

this is my query $sum = "SELECT htno, SUM(tm) AS tech, SUM(tm)/7.5 AS divi, SUM(credits) AS cred , SUM(CASE WHEN credits <= 0 THEN 1 ELSE 0 END) AS log, SUM(CASE WHEN credits > 0 THEN 1 ...
-2
votes
1answer
272 views

Matrix Properties: Elementary row/column operations

Let's say I have a matrix A of arbitrary size, and I perform a finite number of both elementary row/column operations on it, obtaining matrix B. Are there any unique properties of matrix B that ...
0
votes
1answer
52 views

Is it any good to use Jenkins as a web based UI for running operational scripts?

I encountered an operations team which had built a number of jobs in Jenkins and all it does was kickstart scripts in the OS. This sounded a bit strange to me as they are effectively using Jenkins as ...
0
votes
3answers
132 views

Java bit operations error (convert to byte and convert back)

I'm trying to convert date of birth (three ints) to byte and convert it back but I'm having an issue. I have to convert it by using bit operations and send data over multicast server and receive it ...
0
votes
1answer
202 views

HQL removing parenthesis from arithmetic operations

Following HQL: "-(a.import + a.bill)" gets translated to following SQL: "-a.import + a.bill" instead of expected: "-(a.import + a.bill)" This makes the operation to calculate a result ...
0
votes
1answer
70 views

Why variables sum returns multiplication?

in the following code: void fusioneArray(int v[], int vL, int w[], int wL[], int *fusione) { int i,j,temp; int k=0; printf("%d",wL+vL); for(i=0;i<vL;i++) { fusione[k]=v[i]; ...
1
vote
2answers
116 views

Having more WCF methods in a service can decrease performance?

What is a best practice for designing WCF services concerning to the use of more or less operations under a single service. Taking into consideration that a Service must be generic and Business ...
1
vote
1answer
622 views

How can I fix my mathematical operation in xcode to give me the correct answer?

I am building an app that does a lot of math and calculations. I have slider values that are displayed in labels and I have to use those values in a function to get a final value. I have these slider ...
0
votes
0answers
248 views

JAVA - Least Common Multiple & Greatest Common Divisor [closed]

How can I get the least common multiple and the greatest common divisor of a number inside of a matrix. The problem it's the next: "There is a square matrix of dimension N. Find the sum of the ...
1
vote
2answers
104 views

value <= maximum

I wonder, is it possible to achieve similar using bit operations: if a > maximum: a = maximum Where 'maximum' can be a random number? Have many similar lines in my current code. Of course could ...
0
votes
2answers
193 views

Mathematica: Operations on list with missing values

I try and perform operations on a set of lists. For example: Lists: (1, 1, 2, 3, 3, 4, 4, 4, 4, 4, 4, 5), (1, 1, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), (1, 1, 1, 1, NA, NA, NA, NA, NA, NA, NA, NA), ...
3
votes
1answer
406 views

Bitwise Operations in a Steganography Program (C)

I'm relatively new to both C and bitwise operations and I'm having trouble with an assignment I've been given in my class. A majority of the code has been given to me, but I've been having issues ...

1 2 3