From: Christopher N. <cn...@it...> - 2008-09-18 13:21:07
|
Hi all, How can I change the properties of an existing object? I've created some connections with a_b_syn_project = ConnectionsProjection( a_nrn_popul, a_b_nrn_popul, a_b_syn_factory, PredicateBasedConnections(EuclidianDistanceConnectionPredicate( a_b_connp, 20 )), collectPairs = True ) After simulating for some amount of time, I want to change the weights of these connections. I can get the object ids with e.g. a_b_syn_project(0), but if I try to get the object handle with net.object(a_b_syn_project(0)), python segfaults, so I guess that's not the correct method. Any ideas? Cheers, Chris. |