Forum: Vizard
12-05-2007, 08:46 AM
|
|
Replies: 28
Views: 65,264
This is the only machine with the program and...
This is the only machine with the program and space to run on (I'm pretty sure...I'd have to double check, but I'm pretty sure we can't run on another system (even if we copied the program to another...
|
Forum: Vizard
12-04-2007, 11:42 AM
|
|
Replies: 28
Views: 65,264
|
Forum: Vizard
12-04-2007, 11:27 AM
|
|
Replies: 28
Views: 65,264
|
Forum: Vizard
12-04-2007, 10:52 AM
|
|
Replies: 28
Views: 65,264
|
Forum: Vizard
12-03-2007, 10:22 AM
|
|
Replies: 28
Views: 65,264
|
Forum: Vizard
12-03-2007, 08:39 AM
|
|
Replies: 24
Views: 77,122
This is what I did:
class...
This is what I did:
class SampleRate(viz.EventClass):
def __init__(self,rate,func):
viz.EventClass.__init__(self)
self.rate = rate
self.func = func
self.lastSampleTime = 0.0...
|
Forum: Precision Position Tracker (PPT)
11-30-2007, 09:45 AM
|
|
Replies: 3
Views: 44,940
|
Forum: Precision Position Tracker (PPT)
11-30-2007, 09:39 AM
|
|
Replies: 3
Views: 44,940
|
Forum: Vizard
11-30-2007, 08:37 AM
|
|
Replies: 24
Views: 77,122
The sample script didn't really do anything. ...
The sample script didn't really do anything. Maybe I'm not implementing it correctly, but I can't seem to get consistent results. When I'm running a script other than just that simple script the...
|
Forum: Vizard
11-29-2007, 03:04 PM
|
|
Replies: 24
Views: 77,122
|
Forum: Vizard
11-29-2007, 10:20 AM
|
|
Replies: 24
Views: 77,122
|
Forum: Vizard
11-29-2007, 10:17 AM
|
|
Replies: 24
Views: 77,122
|
Forum: Vizard
11-29-2007, 08:36 AM
|
|
Replies: 28
Views: 65,264
|
Forum: Vizard
11-29-2007, 08:32 AM
|
|
Replies: 24
Views: 77,122
|
Forum: Vizard
11-29-2007, 08:02 AM
|
|
Replies: 24
Views: 77,122
When I press F4 the number keeps rapidly...
When I press F4 the number keeps rapidly changing. It looks like it's fluctuating between 45-55. I don't know what that means but that's what I got. Is it supposed to be stationary? If so, is...
|
Forum: Vizard
11-28-2007, 02:57 PM
|
|
Replies: 28
Views: 65,264
|
Forum: Vizard
11-28-2007, 01:13 PM
|
|
Replies: 24
Views: 77,122
|
Forum: Vizard
11-28-2007, 01:09 PM
|
|
Replies: 28
Views: 65,264
|
Forum: Vizard
11-28-2007, 10:16 AM
|
|
Replies: 28
Views: 65,264
|
Forum: Vizard
11-28-2007, 10:07 AM
|
|
Replies: 24
Views: 77,122
So if I define the sample rate but not max...
So if I define the sample rate but not max samples then it should sample at that rate regardless right? And then data collection would stop whenever the trial ended? So everytime a trial lasted 60...
|
Forum: Vizard
11-28-2007, 10:05 AM
|
|
Replies: 28
Views: 65,264
Here's my movetime list:
movetime = [1/20.0,...
Here's my movetime list:
movetime = [1/20.0, 1/4.0, 1/2.0, 1, 2]
and the code:
MoveRoom = vizact.sequence(vizact.move(0,0,((3/25.0)/time),time), vizact.move(0,0,((-3/25.0)/time),time),...
|
Forum: Vizard
11-28-2007, 08:47 AM
|
|
Replies: 28
Views: 65,264
|
Forum: Vizard
11-27-2007, 06:18 PM
|
|
Replies: 28
Views: 65,264
and would that work if I change .5 to .12???
...
and would that work if I change .5 to .12???
MoveRoom = vizact.sequence(vizact.move(0,0,(0.12/time),time), vizact.move(0,0,(-0.12/time),time), int(30/time))
Would it then run each iteration...
|
Forum: Vizard
11-27-2007, 06:16 PM
|
|
Replies: 24
Views: 77,122
|
Forum: Vizard
11-27-2007, 01:11 PM
|
|
Replies: 28
Views: 65,264
Ok. So what I originally had was:
movetime...
Ok. So what I originally had was:
movetime = [1,2,3,4,5,6]
sequences = []
for time in movetime:
MoveRoom = vizact.sequence(vizact.move(0,0,(0.5/time),time), vizact.move(0,0,(-0.5/time),time),...
|