WorldViz User Forum

WorldViz User Forum (https://forum.worldviz.com/index.php)
-   Vizard (https://forum.worldviz.com/forumdisplay.php?f=17)
-   -   Array Question (https://forum.worldviz.com/showthread.php?t=4438)

new_horizon 12-11-2012 04:32 AM

Array Question
 
Hi All,

I am trying to create a program whereby an element is selected from an array and then a new array (minus the selected object is then created).

E.g.

Speed = [30,40,50,60]

target_speed = random.choice(Speed)

Speed = Speed-target_speed

Obviously the last line is incorrect - can anyone suggest how this can be done?

Thanks

new_horizon 12-11-2012 05:20 AM

Solved the issue - for anyone who wants to know for the future...

Code:

                No_probe_vehicle = 20 # number of trials
                Speedarray = ([30,30,30,30,40,40,40,40,50,50,50,50,60,60,60,60])

                for j in range (0,No_probe_vehicle):

                        probe_speed = random.choice(Speedarray)
                        Speed[1] = probe_speed*(1609.44/3600)
                        print "Probe Speed", probe_speed
                        print "Speed Array", Speedarray
                        Speedarray.remove(probe_speed)
                        print "speed", Speed



All times are GMT -7. The time now is 07:21 AM.

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Copyright 2002-2023 WorldViz LLC