Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
330 views

Azure - 2x extra small or a single small instance

Starting out with Windows Azure, but how do I know which is better to handle web-traffic and a background processor. Would 2x extra small instances be better or a single small instance. If I were to ...
5
votes
1answer
497 views

Sum selected rows in datatable only?

Hi I have a datatable which has an amount column & a status column. I want to sum only those rows who have status '1'. How to do this ? I am summing the column via datatable Compute method. Please ...
5
votes
1answer
192 views

We know log_add, but how to do log_subtract?

Multiplying two numbers in log space means adding them: log_multiply(x, y) = log( exp(x) * exp(y) ) = x + y Adding two numbers in log space means you do a special log-add ...
4
votes
4answers
3k views

Datatable's Compute Function For Rows

As we know that, with compute function of datatable we can get sum of columns. But I want to get sum of a row of datatable. How can I do it with asp.net 1.1? Edit: I will explain with a example: I ...
4
votes
18answers
3k views

How would you write a non-recursive algorithm to calculate factorials?

How would you write a non-recursive algorithm to compute n!?
3
votes
4answers
81 views

Compute and edit multiple attributes in a single jQuery call

I need to compute new and edit both the 'x' and 'y' attributes of an SVG element (rect) using a single jQuery call. Now I know you can do this: var incBy = 20; $('#test').attr('x', function(i, val) ...
2
votes
1answer
59 views

Compute a series

Assignment: Write a method to compute the following series: m(i) = 1 - (1/2) + (1/3) - (1/4) + (1/5) - ... + ((-1)^(i+1))/i Write a test program that displays the following code: i: m(i): 5 ...
2
votes
1answer
185 views

Group by two columns in DataTable Column sum

In the following code for finding sum of Rate column in the DataTable dt dt.Compute("Sum(Convert(Rate, 'System.Int32'))"); In this is it possible to assign group by clause like SQL Inn order to ...
2
votes
2answers
697 views

AS3 computeSpectrum fft true

I am just trying to understand what the values sent back from computeSpectrum(bytes,true,0) mean. I have values ranging from 0 to 1 for each float i read from the byte array but does each value ...
1
vote
3answers
261 views

Group by in DataTable Column sum

In the following code for finding sum of Rate column in the DataTable dt dt.Compute("Sum(Convert(Rate, 'System.Int32'))"); In this is it possible to assign group by clause like SQL Inn order to get ...
1
vote
1answer
196 views

Size of statically allocated shared memory per block question with Compute Prof (Cuda/OpenCL)

In Nvidia's compute prof there is a column called "static private mem per work group" and the tooltip of it says "Size of statically allocated shared memory per block". My application shows that I am ...
1
vote
2answers
108 views

ASP.NET on cloud server

My website is running quite well and serving lacks of pages on daily basis. We want to add one more web server to share load on server at heavy traffic times. Instead, can I go with Amazon Elastic ...
1
vote
1answer
395 views

add extra column value to a column sum

I have the following issue: I have a report that uses a Dataset as its datasource. The dataset has two tables, one would be the main table, say Employee, and the second table is EmployeePaycheck, so ...
1
vote
2answers
1k views

SQL - Reference current row in a computed column with SELECT

I have a table that represents the parameters of a contract - including their change over time through addendums. The first addendum is a "special" addendum representing the parameters when the ...
0
votes
3answers
71 views

How to sum all the numbers of one column in python?

I need to know how to sum all the numbers of a column in a CSV file. For example. My data looks like this: column count min max sum mean 80 29573061 2 40 855179253 28.92 81 28861459 ...
0
votes
1answer
406 views

Datatable compute: filtering by date

I have a datatable with 2 columns: "amount" and "date" I want to sum "amount" by month & year. I am trying this: _tAmount = myDT.Compute("sum(amount)", "date LIKE '%/" & i & "/" & ...
0
votes
1answer
518 views

C# Datatable Compute on Index instead of Name?

I am using a Datatable in ASP.NET / C# and would like to use the Compute method to sum each column, is there a way of doing this based on column index rather than column name so I can just place it in ...
0
votes
1answer
134 views

Question about Compute Visual Profiler and number of blocks for profiling

On page 51 of the Compute Visual Profiler User Guide it states that: " Note that in case the number blocks in a kernel is less than or not ...
0
votes
1answer
31 views

Is it possible to compare more than two kernels executions at a time in Compute Prof (OpenCL/CUDA)

Is it possible to compare more than two kernels executions at a time in Compute Prof?
0
votes
1answer
313 views

Visual basic 6.0 - ComputeHash invalid procedure call or argument error

I am getting the error "invalid procedure call or arguments" at the step computeHash(). Any help highly appreciated. Private Sub Form_Load() Dim rngcsp As New RNGCryptoServiceProvider '= new ...
0
votes
2answers
1k views

Datatable Compute Function for multiple colmuns

I want to count the number of non-null values per column in a Datatable. I could loop through the columns and use the compute function on each column, but I was wondering if there is a more efficient ...
0
votes
6answers
3k views

How do I compute a win/loss percentage in Visual Basic?

Huge noob here trying to teach himself VB. I need to compute the percentage of games won and games lost. I keep getting errors and it's driving me up a wall. I've changed my code so many times that I ...