Tagged Questions
The seq tag has no wiki summary.
7
votes
2answers
156 views
Inconsistency with Clojure's sequences?
Clojure:
1:13 user=> (first (conj '(1 2 3) 4))
4
1:14 user=> (first (conj [1 2 3] 4))
1
; . . .
1:17 user=> (first (conj (seq [1 2 3]) 4))
4
I understand what is going on, but should this ...
5
votes
1answer
779 views
Lift Framework can't deserialize JSON data
I'm trying to deserialize JSON text using the Lift framework, and it doesn't appear that they support Seq trait (although List is supported). As an example...
Some JSON data representing employees ...
4
votes
2answers
227 views
Sliding window over seq
In Clojure, what would be the nicest way to have a sliding window over a (finite, not too large) seq? Should I just use drop and take and keep track of the current index or is there a nicer way I'm ...
3
votes
4answers
147 views
Clojure seq as a substitute for Scala Option[T]
Scala offers a hierarchy of classes Option[T], Some[T] extends Option[T], and None extends Option[Nothing] that I have found useful for wrapping Java method calls that can return null, among other ...
3
votes
2answers
150 views
Scala - Why can't infer List of Seq for a list containing Vector and List?
Trying the following in 2.8.1/2.9.0.1 REPL, the first gives an error.
val l = List(Vector(1,2), List(3,4,5))
error: type mismatch;
found : scala.collection.immutable.Vector[Int]
required: ...
3
votes
4answers
138 views
How can I attach seq to another one by an attribute?
I have a seq of seqs in FSharp. I want to join a seq to the previous one if a predicate returns to true for it.
Sample:
let items = seq [seq[2;3;4];seq[1;5;6;7;1;9];seq[2;3;5;7]]
I want to join a ...
3
votes
1answer
70 views
Expand an seq into individual scalars
I want to feed the members of a lazy seq produced by map as individual arguments to another function. Is there a function that splices a (lazy) seq?
3
votes
4answers
210 views
Initializing an infinite list of BigIntegers
Ok,
So I need a list of all the positive integers.
What first comes to mind is:
let numbers:Seq<bigint>=Seq.initInfinite n...
but initInfite isn't actually infitint: ...
3
votes
1answer
107 views
How to return early from an iteration on a sequence?
Given a predicate "p", that tells if a solution is good enough. A cost function "f" that tells how good a possible solution is and a function that searches for the "best" (i.e. lowest cost) solution ...
2
votes
1answer
84 views
Adding an item to an immutable Seq
Say, I have a sequence of strings as an input and I want to get a new immutable Seq which consists of elements of the input and an item "c". Here are two methods that I've discovered to be working:
...
2
votes
2answers
116 views
2
votes
2answers
257 views
Monads: What's the difference between seq and >>=?
What's the difference? Does seq guarantee more flow conditions?
2
votes
5answers
178 views
Split seq in F#
I should split seq<a> into seq<seq<a>> by an attribute of the elements. If this attribute equals by a given value it must be 'splitted' at that point. How can I do that in FSharp?
...
2
votes
6answers
315 views
Variables in bash seq replacement ({1..10})
Is it possible to do something like this:
start=1
end=10
echo {$start..$end}
# Ouput: {1..10}
# Expected: 1 2 3 ... 10 (echo {1..10})
2
votes
1answer
192 views
(zsh brace expansion | seq) for character lists - how?
Bash allows me to write the statement,
$ for i in {h..k} ; do echo $i ; done
but zsh only allows number list expansion such as {8..13}.
What's the best workaround? Something like seq for ...
1
vote
3answers
61 views
Bash Script Loop Out of Memory?
In bash I need to run a script that loops from i=1 to i=99999999 but it always run out of memory. Is there any workaround? or is there a max value for i?
first=1
last=99999999
...
1
vote
2answers
115 views
F#: Seq.forall weirdness?
Given let ra = ResizeArray<int> ():
Seq.forall (fun i ->
let q = i % 2
if 0 = q then ra.Add i
true ) <| seq { 1..10 }
If I do ...
1
vote
5answers
139 views
F# lists with sequence operators
After having a look at these two threads: Does F# have an equivalent to Haskell's take? , Take N elements from sequence with N different indexes in F#
, I've been wondering about the best way to ...
1
vote
1answer
206 views
Sequence of Repeated Values in R
This is a very basic question, but it's annoying me, so I'm asking.
I need a sequence of repeated numbers, i.e. 1 1 ... 1 2 2 ... 2 3 3 ... 3 etc. The way I implemented this was
nyear<-20
...
1
vote
3answers
132 views
F# applying Seq.map using 2 sequences to a method which takes 2 parameters
I'm writing a quick DB perf test, and chose F# so I can get more practice.
I've created a method, measureSelectTimes, which has the signature Guid list * Guid list -> IDbCommand -> TimeSpan * ...
1
vote
1answer
81 views
how to open seq<seq<…>> or another way making Seq.collect(fun x -> x)
dashboard.Grid
|> Seq.mapi ^-^ fun y sx ->
sx |> Seq.mapi ^-^ fun x s ->
if not <| s.IsEmpty && s.CellState.Color = color then
let psteps = ...
1
vote
1answer
129 views
clojure: how to convert jdbc4array into clojure's seq?
I tried to query data from database with jdbc. The problem is some column is array type.
;get that particular column
(def jdbc-array (with-connection *db* ...
1
vote
5answers
199 views
Generate sequences of adjecent subsets (from a list of lists) [closed]
I have an matrix (array of arrays) in the form
[1, 2, 3, 4]
[12, 23, 34]
[123, 234]
[1234]
And want to produce sequences of this matrix that is following each other and is (converted to a string) ...
1
vote
5answers
193 views
Filter an array or list by consecutive pairs based on a matching rule
This is probably trivial, and I do have a solution but I'm not happy with it. Somehow, (much) simpler forms don't seem to work and it gets messy around the corner cases (either first, or last matching ...
1
vote
2answers
266 views
How to call next() on a resultset in clojure.contrib.sql?
Originally I was going to ask why I was having problems calling (seq) on a result set as a test for emptiness, but a bit of research showed that it's apparently because the jdbc cursor hasn't moved ...
1
vote
2answers
154 views
Problem using Seq.cast
Using Seq.cast seems to constantly fail, even for something as simple as the following:
let xor c = Seq.cast c |> Seq.reduce (^^^)
xor [1;3] // Works, assuming because no cast is necessary
...
1
vote
1answer
201 views
How do I use tryPick to get the first element of a sequence?
I was trying to use Seq.first today, and the compiler says it has been deprecated in favor of Seq.tryPick. It says that that it applies a function and returns the first result that returns Some. I ...
0
votes
3answers
70 views
DNA seq how many triplets? [closed]
{ seq1=ATAATAGACAGTACGAAGTGGGTAGCCAT }
the question is how many triplet is there in these seq
but
i think that i have to use an for-loop but don't know how,
can anyone help me ?
0
votes
0answers
18 views
snd_seq_event_output() takes lots of time
I use snd_seq_event_output_direct() to output scheduled notes using ALSA sequencer interface. Though most of time it works reliably, if I output lots of notes (1000+) then ONCE this function takes ...
0
votes
2answers
168 views
F# Seq.Map string->string
all!
What is wrong with this code? I cannot understand what I am doing wrong with Seq.Map.
Here is the error message: The type 'unit' is not compatible with the type 'seq<'a>'
let ...
0
votes
1answer
151 views
Aggregate functions in Seq module
I am trying to add some additional aggregate functions to the Seq module. I was looking at the implementation of some of the functions listed here:
...
0
votes
3answers
241 views
Vectorizing rep and seq in R
I am trying to accomplish two things. First if I have a vector 1:5 I want to get a matrix (or two vectors) indicating the unique combinations of these elements including twice the same number but ...
0
votes
3answers
81 views
How to skip a particular number when iterate over a range sequence number?
Let's said
for i in {1..9}
do
if test $i -ne 8
then
echo $i
fi
done
If there a way to skip number 8 from this sequence {1..9} without doing the comparison?
PS: GNU bash, version 3.00
-1
votes
1answer
661 views
R time series, complicated sequence
I am attempting to merge two different time-series in R with the following characteristics:
Data must be between 08:30 and 15:00 on a daily basis.
Data spans several weeks, not just one particular ...