27 questions
0
votes
3
answers
90
views
Need to have excel average every nth row only with data in it
I have a weekly scorecard that our leadership is going to fill out. Its all on one tab and has 500+ rows of the same scorecard that runs with the same statistics. I took a screen grab of one section. ...
0
votes
1
answer
148
views
How to iterate through random or specific values in a range? in a non sequential way, in Python
The way Python iterates through a range in a for loop is given the range from (0 to n) it will do the operations first for 0, then for 1, 2... until it finishes in n, completing the for loop. Am I ...
0
votes
0
answers
102
views
Mongodb aggregation lookup with condition
I have two collections called 'store' and 'items' , where store keep all product records belongs to the supermarket with timestamp. And 'items' keeps records of some details about purchases.
Store ...
-1
votes
1
answer
52
views
Call php method from ajax,return nonsense page
Trying page.İt's working.And downloading excel(xlsx) file.But some code,calling another php file in tableCreate.php=>class TableCreate => function Excele_Aktar() .İt's not working.And return ...
0
votes
2
answers
778
views
SAS DO LOOP with specific dates
I want to create a data set where I only want to keep 5 specific dates.
So my &date is 31mar2020 and &enddate is 31mar2025 and I only want to keep 31mar every year until 2025.
With my code ...
3
votes
2
answers
120
views
Example of XQuery expression evaluation is not sequential
I am looking for an example which shows that XQuery expression evaluation is not sequential. It is always mentioned when comparing the functional nature of XQuery with procedural languages.
E.g. in ...
3
votes
1
answer
433
views
How to implement sequential logic that exceeds a clock cycle?
I have a sequential Verilog code whereby at each increment of i, a different thing must happen.
For some of the i, there are no timing errors. However, for different values of i, I am getting ...
5
votes
2
answers
4k
views
Is "readers-writers" just "producer–consumer" with multiple consumers?
see thread title: Is "readers-writers problem" just "producer–consumers problem" with multiple consumers? Intuitively I would say no, but I have no way to explain it and also could see this question ...
2
votes
1
answer
2k
views
How to use both Sequential and Non Sequential Features with Tensorflow
My dataset has multiple features containing both sequential data and non sequential data.
How can I concatenate or use them together in a model to work it out with all the features rather than just ...
3
votes
2
answers
6k
views
How to include batch normalization in non-sequential keras model
I am new to DL and Keras. Currently I try to implement a Unet-like CNN and now I want to include batch normalization layers into my non-sequential model but do not really now how.
That is my current ...
0
votes
3
answers
773
views
Sorting two non-sequential arrays to one array ascending
I was trying to sort two arrays with non sequential numbers into one array after I did with sequential numbers. Do I need to order the arrays separately or is there a more effective way?
If I run the ...
1
vote
1
answer
1k
views
Keras. Concatenate layers. TypeError
I want to create a siamese model, defined lower for colloborative filtration. First one creates users' embeddings, second one creates items' embeddings.
import keras
from keras import backend as K
...
3
votes
1
answer
1k
views
How does non-sequential (eg, UUID/GUID) data degrade index performance?
I've read in a couple of online articles pertaining to the performance of using UUID's as primary keys in MySQL - and a common theme, whether they are for-or-against is the idea that non-sequential ...
0
votes
2
answers
371
views
R- For loop for non-sequential list
This is probably a simple question, but I'm struggling finding a way to do the equivalent of "for (i in 1:10){ do something}" but with a list of strings. For example:
given a list of strings a = ("...
0
votes
1
answer
936
views
SAS: Non-sequential do loop within a data step
I would like to be able to execute a do loop for a non-sequential set of values. The way I have written this code runs a new data step for each value - so therefore the end product is a data table ...
0
votes
3
answers
107
views
Searching a file non-sequentially
Usually when I search a file with grep, the search is done sequentially. Is it possible to perform a non-sequential search or a parallel search? Or for example, a search between line l1 and line l2 ...
0
votes
2
answers
110
views
PHP Loop - dealing with non-sequential iterations
I have the following code - it produces a series of queries that are sent to a database:
$a = 'q';
$aa = 1;
$r = "$a$aa";
$q = 54;
while($aa <= $q){
$query .= "SELECT COUNT(". $r .") as ...
-1
votes
1
answer
1k
views
Easy One - reference to non-sequential cells
I'm sure this has been asked before, but I couldn't figure out the right search terms to get the answer I was seeking, so apologies...
I have one worksheet with regular but non-sequential data (i.e. ...
0
votes
2
answers
200
views
Non sequential ftp script
Scenario:
I have to transfer approx 3000 files, 30 to 35 MB each from one server to another (Both servers are IBM-AIX servers).
These files are in .gz format. They are unzipped at the destination ...
1
vote
1
answer
2k
views
Non Sequential Serial Numbering
I am a newbie to function writing in Excel and really need help urgently.I need to assign serial numbers with uneven increments. For Example I have a column B that contains some names of customers in ...
2
votes
2
answers
2k
views
Generate unique non-sequential alphanumeric string of length 6
I need to generate unique non-sequential alphanumeric string of exactly length 6 (not less, not more).
With non-sequential I mean it should look visually random at first sight and not coming from a ...
1
vote
1
answer
967
views
What are some examples of a sequential-decision tasks?
I ask this because I'm currently learning about Neural Networks as a subset of the machine learning algorithms
Just trying to get some intuition on what sort of problems out there are categorized as "...
1
vote
2
answers
310
views
Artificial Intelligence: If there is such a thing as a "sequential-decision" task, what does a "non-sequential decision" task look like?
I have heard that neural networks are very good when implementing solutions to sequential-decision tasks. However, I assume that the qualifier "sequential" exists because there must likewise be a "non-...
1
vote
2
answers
451
views
Non Sequential Loop Optimization in Python
I have two dictionary objects, connections and network. This can be visualized as a graph, where each node is a computer and connections depict an edge between the computers and node. Network is a ...
3
votes
3
answers
889
views
High performance MySQL random non-sequential row
I'm trying to grab a random row from a table where the data doesn't change. I've read that people try ORDER BY RAND() which is terrible for large datasets and doesn't scale well.
I've also seen the ...
4
votes
4
answers
714
views
Java exception handling in non sequential tasks (pattern/good practice)
There are some task that should't be done in parallel, (for example opening a file, reading, writing, and closing, there is an order on that...)
But... Some task are more like a shoping list, I mean ...
1
vote
1
answer
824
views
Displaying Powerpoint slides on second monitor non-sequentially using VBScript
If a Powerpoint presentation is not currently displayed - how can I display (for example) slide 7 of 10 on the secondary monitor, using vbscript?