All Questions
Tagged with continuous algorithm
7 questions
0
votes
1
answer
59
views
Find global minimum in continuos data
I am a student who is just a beginer in programming. I am trying to find global minimum value of light on cotinuos road. For example, In a curved road, I want to find the minimum value of light that ...
0
votes
0
answers
57
views
Is there a way to automatically detect if a variable is multiple categorical or continuous
If your dataset is big, say you have thousands of variables. Some variables are multiple categorical and some are continuous. Question is, how do you know if a variable is continuous vs multiple ...
4
votes
1
answer
2k
views
Continuous space shortest path
I need a shortest path algorithm for controlling a real life robot.
Lets say i have map of the environment in the form of a matrix where 1 is an obstacle and 0 is free space. If i use a conventional ...
3
votes
4
answers
1k
views
Identify groups of continuous numbers from consecutive list in python
What is the most efficient way in python for picking multiple n consecutive integers from n consecutive list, picking up one integer from each list. Here n is quite large..say in the order of 100s.
...
3
votes
4
answers
7k
views
Sorting algorithm for continuous data stream
Which of the sorting algorithms heap-sort, quick-sort & merge-sort could work with a continuous stream of data? I want to have a list that's always sorted, so that new values can get into the list ...
0
votes
1
answer
1k
views
Count fragments or sequence of contiguous numbers in an array
Say you have an array of integers, eg: [0,1,2, 5,6,7, 9,10,11]. In an ideal world they would be sorted, but if the algorithm can work with unsorted, even better.
I need to know how many "fragments" ...
4
votes
1
answer
3k
views
How does the C4.5 Algorithm handle continuous data?
I am implementing the C4.5 algorithm in .net, however I don't have clear idea of how it deals "continuous (numeric) data". Could someone give me a more detailed explanation?