Questions tagged [sequential]

1) Any of various questions about a succession of elements arranged in a series, usually with numeric identifiers or numeric indexing; 2) Implementation questions about sequential neural networks.

Overview

  • Any of various questions about a succession of elements arranged in a series, usually with numeric identifiers or numeric indexing.

  • Implementation questions about sequential neural networks.

930 questions
-1
votes
2 answers

PHP sequential foreach

Guys i've got an array thats like this: array(3) { [2]=> array(1) { ["name"]=> array(2) { [0]=> string(13) "row1" [1]=> string(13) "row3" } } [5]=> array(1) { ["name"]=> …
Anonymous
  • 748
  • 3
  • 10
  • 22
-2
votes
1 answer

Add sequential numbers to duplicate values inside while loop

I am pulling out som data from a table called taskmanager. One of the columns contains 'assigned_user_id' and can occur multiple times. I am trying to figure out, how do I add sequential numbers where assigned_user_id is the same (duplicate). But I…
MauiRiis
  • 21
  • 5
-2
votes
4 answers

How can I implement this model?

Problem statement I have 3 classes (A, B, and C). I have 6 features: train_x = [[ 6.442 6.338 7.027 8.789 10.009 12.566] [ 6.338 7.027 5.338 10.009 8.122 11.217] [ 7.027 5.338 5.335 8.122 5.537 6.408] […
user366312
  • 16,949
  • 65
  • 235
  • 452
-2
votes
1 answer

I want to make this sequential code into a loop

How can i make this code which is only for initialization m->dvd[0].id_f = 1; m->dvd[0].id_c = 1; m->dvd[0].state = AVAILABLE; m->dvd[1].id_f = 1; m->dvd[1].id_c = 2; m->dvd[1].state = AVAILABLE; m->dvd[2].id_f = 2; m->dvd[2].id_c =…
-2
votes
2 answers

python string replace using for loop with if else

I am new with python, trying to replace string using for loop with if else condition, I have a string and want to replace some character of that string in a such way that it should take / pick first character of the string and search them in the…
-2
votes
1 answer

How to create kubernetes job/cronjob which will run continuously

I have a kubernetes job. I want to execute this job continuously . Like 1st will run, it will take around 10 or 15 minutes to complete. Then it will wait for 2 minutes. again same job will be triggered. like that it continue. Is there any to way to…
Baitanik
  • 63
  • 1
  • 7
-2
votes
1 answer

Implementing between sequential and combinational logic in HDL

I'm getting started HDL in especially Verilog area. I found that there are two kind of way to implement 'sequential logic' and 'combinational logic' and would like to implement a fractional operation but can't have a decision between combinational…
dogo
  • 3
  • 2
-2
votes
1 answer

Desing pattern suggestions for sequential jobs which follows previous steps output

I want to design a subtitle-word parser. It works like that; Check subtitle provider for availability Fetch subtitle as inputStream Convert inputStream to lines of text Parse lines to sections ( A subtitle file includes 100 - 110 sections ) Parse…
maskapsiz
  • 244
  • 5
  • 23
-2
votes
1 answer

Sequential search in Java

Here I have learned to make programs in java about sequential searches. But in my program, I realized there was something that needed to be added or improved, but I was confused about how. Can anyone give me a suggestion, thank you. example. enter…
-2
votes
3 answers

extract numbers in sequential: python

I'm a novice coding learner. I am trying to extract numbers only in sequential from the list. for example, my list is: s = [2, 4, 6, 7, 8, 9, 10, 13, 14, 15] from this list I want only the numbers in sequential: 6,7,8,9,10, 13,14,15 so, I have…
-2
votes
1 answer

Detecting files with sequential number in the file name

I want to implement a function that imports multiple files with the sequential number. If the file names are something like aaa_000, aaa_001 than I can split them by the underscore and take the number. But when the file names aren't in this pattern,…
Ives
  • 505
  • 1
  • 4
  • 14
-2
votes
2 answers

Average case of Linear search

I have an array of elements A1,A2,...,An. The probability of a user searching for each element are P1,P2,...,Pn. If the elements are rearranged, will the average case of the algorithm change? Edit : I have posted the question, which appeared in my…
Sudarshan Sunder
  • 190
  • 3
  • 13
-2
votes
1 answer

Batch file to execute programs sequentially

I have three programs, which I would like to execute sequentially. What I mean is, as soon as the first program completes its run, the second one should start and so on. I have heard that batch files can be used for this, but I am not sure exactly…
Chef.Steph
  • 11
  • 1
  • 6
-2
votes
1 answer

Sequential Search of an Array

i am in desperate need of more help this week. My professor is sub par and makes no effort to clear things up. The Problem: import a file and search for a specific piece of data that is requested by a user. The output must return…
-2
votes
1 answer

How do we mine associations from sequences?

My data mining problem is a p=next web page prediction using the exixting web data. For that I have a set of frequent sequences which are obtained using cspade algorithm in R. Now I am not sure how to mine set of associations so that I can predict…
user1840131
  • 11
  • 1
  • 6
1 2 3
61
62