Example #1
0
 def test_rplot_list(self):
     y = [np.random.rand(100, 1), np.random.rand(100, 1)]
     h = spp.rplot(y=y)
Example #2
0
 def test_rplot_matrix_x(self):
     y = np.random.rand(100, 5)
     x = np.random.rand(100)
     h = spp.rplot(y=y, x=x)
Example #3
0
 def test_rplot_list1d(self):
     y = [np.random.rand(100), np.random.rand(100)]
     h = spp.rplot(y=y)
Example #4
0
 def test_rplot_vector_x(self):
     y = np.random.rand(100)
     x = np.random.rand(100)
     h = spp.rplot(y=y, x=x)
Example #5
0
    def test_rplot_matrix(self):

        y = np.random.rand(100, 5)
        h = spp.rplot(y=y)
Example #6
0
 def test_rplot_vector(self):
     y = np.random.rand(100)
     h = spp.rplot(y=y)
Example #7
0
def plotter(index):
    x = np.linspace(0, 10, 200)
    y = np.sin(x * index)
    spp.rplot(x=x, y=y)
    print('y = sin(' + str(index) + ' * x)')