Displaying 3 results from an estimated 3 matches for "zerodata".
Did you mean:
_erodata
2009 Dec 11
3
Correcting for missing data combinations
I can think of many brute-force ways to do this outside of R, but was
wondering if there was a simple/elegant solution within R instead.
I have a table that looks something like the following:
Factor1 Factor2 Value
A 11/11/2009 5
A 11/12/2009 4
B 11/11/2009 7
B 11/13/2009 8
>From that I need to generate all permutations of Factor1 and Factor2 and
force a 0 for any combination that doesn?t
2006 Sep 26
2
FLAC CD Archive
Charles Steinkuehler wrote:
> Dan Phillips wrote:
> >> What we are left with is a requirement in abcde to overcome this and
> >> until then we have the manual method. Have you any thoughts on the best
> >> way to overcome this problem apart from the hacked toc3cue (do you have
> >> a copy of this?)
>
> I do not have a copy of toc3cue...I made my own
2006 Sep 26
0
FLAC CD Archive
...out << " ISRC " << trun->isrc() << "\n";
+
const SubTrack *strun;
SubTrackIterator stitr(trun);
int pregap = 0;
for (strun = stitr.first(); strun != NULL; strun = stitr.next()) {
if (strun->TrackData::type() == TrackData::ZERODATA) {
- - out << " PREGAP " << trun->start().str() << "\n";
+// out << " PREGAP " << trun->start().str() << "\n";
+ out << " INDEX 00 00:00:00\n";
+ offset += trun->start...