Skip to main content
11 events
when toggle format what by license comment
Apr 13, 2017 at 12:55 history edited CommunityBot
replaced http://mathematica.stackexchange.com/ with https://mathematica.stackexchange.com/
Sep 10, 2016 at 18:08 history edited jkuczm CC BY-SA 3.0
Add link to "Sequence Specifications" documentation.
Aug 31, 2015 at 18:27 history edited jkuczm CC BY-SA 3.0
Use proper way to clean cache.
Aug 23, 2015 at 18:18 history edited jkuczm CC BY-SA 3.0
Add code cleaning up straming cache.
Aug 19, 2015 at 22:06 history edited jkuczm CC BY-SA 3.0
Add general lazy subsets using Streaming module.
Jun 18, 2015 at 13:10 history edited jkuczm CC BY-SA 3.0
Enhance `scanSubsetsChunks` function. Add links to Streaming` based solutions. Fix typos.
Jun 17, 2015 at 19:28 comment added bobknight @jkuczm thanks for the nice solution and additional function, this is exactly what I was looking for.
Jun 17, 2015 at 16:53 comment added Dr. belisarius Not by chance :)
Jun 17, 2015 at 16:51 comment added jkuczm @belisarius Shorter indeed, exactly tweet-length.
Jun 17, 2015 at 15:46 comment added Dr. belisarius The same shorter and without needing error control:sSC[f_, data_, nspec_, cl_] := Module[{p, i = 1, last, k = Subsets[data, nspec, #] &}, last = Last@k@-1; While[Last[p = Quiet@k@{i, i + cl - 1}] != last, f@p; i += cl;]; f@p]
Jun 17, 2015 at 13:56 history answered jkuczm CC BY-SA 3.0