# HopfieldWeights.nsl simulation set up nsl create display_frame .hopfield_weights for { set i 0 } { $i < 5 } { incr i 1 } { frame .hopfield_weights.w$i pack .hopfield_weights.w$i -side top # nsl create display_frame .hopfield_weights.w$i } for { set i 0 } { $i < 5 } { incr i 1 } { for { set j 0 } { $j < 5 } { incr j 1 } { nsl create display_window .hopfield_weights.w$i.w$i$j -width 160 -height 130 \ -layer HopfieldModel.hopfield.w -elem_i $i -elem_j $j \ -graph area_level_graph -wymin 0.0 -wymax 0.15 -side left -grid NSL_ON # gridArray .hopfield_weights.w$i.w$i$j 40 20 120 110 16 18 } }