Skip to main content
0 votes
0 answers
39 views

So I am making a website to dynamicaly calculate cost and profit of some crafts(bps) in a game (Eve btw). As I like to do calculations on my own and store my own data, I need to get most of the needed ...
KiyeliPanda's user avatar
0 votes
0 answers
45 views

I’m trying to design a partitioning algorithm to scale task execution in a resource-constrained environment. Here’s the situation: Tasks consume data via a DAL (Data Access Layer), which could be a ...
Batiz's user avatar
  • 113
1 vote
1 answer
51 views

There are many repeated values in an (N × N) Toeplitz matrix. Example: The same is true for its mirror image, the Hankel matrix. I am trying to find the most efficient way to sum the columns of such ...
Harry's user avatar
  • 946
1 vote
1 answer
51 views

I've created two lists, call them "a" and "b". List a has length 24,480 while b has length 20,116. Every element in both a and b is also a list of length 3. To visualize, each ...
joetjen's user avatar
  • 11
0 votes
0 answers
90 views

The goal is to use a formula, for simplicity given as: def my_formula(x): return x + 5 , in other functions, in a way that doesn't waste computation time by constantly having to reference back to ...
Aphus's user avatar
  • 3
0 votes
1 answer
96 views

I am trying to process a column in an excel sheet that contains around 50k rows. The column has text values that need to be evaluated and in case of a correct match, a part of that string needs to be ...
Dipankana Rakshit's user avatar
1 vote
1 answer
750 views

We are trying to make the step from postgres 10 to 16, we already tried a while ago to lower versions 12 or 13, but updates were added in the machine and the poor performance we attribute to those ...
Víctor Martín Aguilar's user avatar
1 vote
1 answer
328 views

I am learning SQL, and while working through guided examples, I like to attempt writing my own query to answer a question before seeing how the lesson suggests doing it. In this case, I used a ...
G Tony Jacobs's user avatar
0 votes
0 answers
57 views

As it stands, I have a game I writing, utilizing PCG (Procedural Content Generation). I was wondering if there was a better way to store the vertices of my polygon with certain library restrictions (...
Ian's user avatar
  • 73
0 votes
2 answers
87 views

I'm currently programming an MCTS AI for a game and I want to optimize the CPU bottlenecks. One method takes about 20% of all processing and returns to what team a piece/base on a position on a 2D ...
Simon's user avatar
  • 1
5 votes
1 answer
163 views

I have a square matrix with dimension ranging from 100x100 to 10,000x10,000. The matrix represents parameter values for a function. I go through a loop where I try various combinations of parameters....
A Friendly Fish's user avatar
0 votes
1 answer
60 views

I have an array stored in the site options in WordPress which will potentially have 3000 email addresses in it. Every night I need to process this list with some checks on those email addresses and I'...
Naomi S's user avatar
  • 67
0 votes
3 answers
156 views

I have program that needs to repeat a merge which uses the same column from Table A over and over, but changes the column from table B. Doing it with a loop that uses the data.table::merge command ...
Sam Asin's user avatar
  • 173
-2 votes
1 answer
87 views

I am new to python, but have been coding in MATLAB for years. I've been working to code a specific problem, which requires nested for loops for multiple matrices to solve a series of equations. I knew ...
Nikole's user avatar
  • 1
2 votes
3 answers
99 views

I have the following R code that works but it's quite slow. I want to create a new column based on the values of an existing column in a R dataframe. But there's a catch/complication, I need to access ...
Martino's user avatar
  • 23

15 30 50 per page
1
2 3 4 5
43