About 50 results
Open links in new tab
  1. Newest 'algorithm' Questions - Stack Overflow

    4 days ago · On the wikipedia page about junction tree algorithm there is an algorithm for finding a junction tree of a graph working by finding the maximal weight spanning tree of a clique …

  2. algorithm - What does O (log n) mean exactly? - Stack Overflow

    Feb 22, 2010 · A common algorithm with O (log n) time complexity is Binary Search whose recursive relation is T (n/2) + O (1) i.e. at every subsequent level of the tree you divide …

  3. algorithm - Peak signal detection in realtime timeseries data

    Robust peak detection algorithm (using z-scores) I came up with an algorithm that works very well for these types of datasets. It is based on the principle of dispersion: if a new datapoint is a …

  4. algorithm - Difference between Big-O and Little-O Notation

    Sep 1, 2009 · Algorithm A can't tell the difference between two similar inputs instances where only x 's value changes. If x is the minimum in one of these instances and not in the other, then A …

  5. What is Sliding Window Algorithm? Examples? - Stack Overflow

    Nov 25, 2011 · While solving a geometry problem, I came across an approach called Sliding Window Algorithm. Couldn't really find any study material/details on it. What is the algorithm …

  6. CRC16 (ModBus) - computing algorithm - Stack Overflow

    Mar 15, 2019 · In the algorithm itself, we use the reversed polynomial 0xA001 instead of 0x8005.This is because we apply the algorithm starting from the least significant bit instead of …

  7. How do I check if a number is a palindrome? - Stack Overflow

    Oct 14, 2008 · How do I check if a number is a palindrome? Any language. Any algorithm. (except the algorithm of making the number a string and then reversing the string).

  8. Algorithm for Additive Color Mixing for RGB Values

    Oct 29, 2016 · Thank you, this was what I was looking for when searching for color mixing algorithm. The problem with the answers above (using linear mixing of rgb-values) is that they …

  9. Algorithm to compare two images - Stack Overflow

    Apr 18, 2015 · Why could this be useful? Dependant on the morphing algorithm you use, there may be a relationship between similarity of images, and some parameters of the morphing …

  10. python - Moon / Lunar Phase Algorithm - Stack Overflow

    Aug 23, 2015 · Does anyone know an algorithm to either calculate the moon phase or age on a given date or find the dates for new/full moons in a given year? Googling tells me the answer …