search for: curid

Displaying 2 results from an estimated 2 matches for "curid".

Did you mean: curie
2006 Jan 17
1
How to loop a Vobis sound ?
..._id, AL_LOOPING, AL_TRUE); else if (0 == n || 1 == n) alSourcei (m_id, AL_LOOPING, AL_FALSE); else { // current buffer as counted 1. // The following code is only work for single buffer stream. // todo: process the double buffering stream differently. ALint curId = 0; alGetSourcei (m_id, AL_BUFFER, &curId); if (curId != 0) { n--; for (int i = 0; i < n; ++i) alSourceQueueBuffers (m_id, 1, (const ALuint*)&curId); } } m_iRepeats = n; } bool Source::IsPlaying () { ALint play; alGetSourcei (m_id, AL_...
2011 May 05
1
Looping over graphs in igraph
Hi, I'm trying to do some basic social network analysis with igraph in R, but I'm new to R and haven't been able to find documentation on a couple basic things: I want to run igraph's community detection algorithms on a couple thousand small graphs but don't know how to automate igraph looking at multiple graphs described in a single csv file. My data look like something in