コード例 #1
0
ファイル: test_plotting.py プロジェクト: dsacc/pygsp
        def test_DavidSensorNet():
            G = graphs.DavidSensorNet()
            G2 = graphs.DavidSensorNet(N=500)
            G3 = graphs.DavidSensorNet(N=128)

            needed_attributes_testing(G)
            needed_attributes_testing(G2)
            needed_attributes_testing(G3)
コード例 #2
0
ファイル: test_graphs.py プロジェクト: andromeda0505/pygsp
 def test_davidsensornet(self):
     graphs.DavidSensorNet()
     graphs.DavidSensorNet(N=500)
     graphs.DavidSensorNet(N=128)
コード例 #3
0
ファイル: test_graphs.py プロジェクト: dsacc/pygsp
 def test_DavidSensorNet():
     G = graphs.DavidSensorNet()
     G2 = graphs.DavidSensorNet(N=500)
     G3 = graphs.DavidSensorNet(N=128)