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
3
votes
2 answers

What is difference between procedural cohesion and sequential cohesion in Software Design Architecture?

Procedural cohesion says Parts of a module are grouped because they always follow a certain sequence of execution and Sequential cohesion says Parts of a module are grouped because the output from one part is the input to another part like an…
Usama
  • 231
  • 1
  • 4
  • 8
3
votes
1 answer

I want to program in parallel in C, should i avoid to use pthread_join()?

i would like to create multiple threads and launch it at the same time they are created, for the code to goes the fastest possible i tried to do this : for (i = 1; i < nbClients+1; i++) { pthread_create(&tClient, NULL, procedureClient, &i); …
Henley n
  • 3,593
  • 2
  • 10
  • 13
3
votes
1 answer

Please, clarify the concept of sequential and concurrent execution in VHDL

I got familiar with a little bit of Verilog at school and now, one year later, I bought a Basys 3 FPGA board. My goal is to learn VHDL. I have been reading a free book called "Free Range VHDL" which assists greatly in understanding the VHDL…
3
votes
2 answers

Play/Pause/Stop multiple audio files simultaneously and also with sequential manner

I am working on music application, Want to play multiple audio files simultaneously, Found many stackoverflow links to get the solution but still no luck for my scenario, I have total 8 arrays, In each array there are some number of audio files…
iGatiTech
  • 2,306
  • 1
  • 21
  • 45
3
votes
2 answers

how to show sequential results inside textfield

dear all.I want to use only one textfield for different results. what should I do if I want after pressing a few times a checkbox or another checkbox the results will appear sequentially in the textfield.for example:
klox
  • 2,089
  • 11
  • 38
  • 65
3
votes
3 answers

erge text files ordered by numerical filenames in Bash

Is there any way to concatenate multiple text files in numerical order of the file names with one bash command ? I tried this, but for some reason, the first three lines are not in order sort -n *txt > all.txt
3
votes
2 answers

Fire a jquery loop to iterate before animation callback is complete?

I am trying to make a sequential animation, where a loop iterates through a list of elements .post's and fades them in slow. The difficult part is having it so that the next iteration begins fading in before the last one has finished fading. All I…
Trip
  • 26,756
  • 46
  • 158
  • 277
3
votes
2 answers

Illegal sequential statement error

please can anyone tell me how to fix this code? what is the Illegal_sequential_statement error(in modelSim)? why it say that near when nead ';' (in quartus) ? LIBRARY ieee ; USE ieee.std_logic_1164.all; ENTITY Shift_reg IS PORT( Par_LD: IN…
ali amani
  • 35
  • 5
3
votes
2 answers

Is generate Guaranteed to be Executed Sequentially?

I was told here that: The order of generate is not guaranteed => depending on the implementation I have looked up gcc's implementation of generate: for (; __first != __last; ++__first) *__first = __gen(); And Visual Studio implements it…
Jonathan Mee
  • 37,899
  • 23
  • 129
  • 288
3
votes
0 answers

Chaining external asynchronous javascript calls

I have some external JS code that needs to run asynchronously. The way I call it is I create a script inside an asynchronous function which I then attach to the rest of the scripts on the page like so..