Skip to main content

All Questions

Tagged with
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 ...
JSChang's user avatar
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 ...
Yao Yang's user avatar
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 ...
Kartoffel's user avatar
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. ...
rombi's user avatar
  • 199
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 ...
Oscar's user avatar
  • 31
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" ...
Nick's user avatar
  • 2,911
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?
user2210106's user avatar