예제 #1
0
파일: toolsTest.py 프로젝트: ainafp/pyhrf
    def testRepFromBlocks(self):

        m1 = np.arange(2 * 3).reshape(2, 3)
        m2 = np.arange(2 * 4).reshape(2, 4)

        bm = diagBlock([m1, m2], 2)
예제 #2
0
파일: toolsTest.py 프로젝트: ainafp/pyhrf
    def testRepFrom1D(self):

        m1 = np.arange(2 * 3)
        bm = diagBlock(m1, 5)
예제 #3
0
파일: toolsTest.py 프로젝트: ainafp/pyhrf
 def testRepFrom2D(self):
     m1 = np.arange(2 * 3).reshape(2, 3)
     bm = diagBlock(m1, 2)
예제 #4
0
파일: toolsTest.py 프로젝트: ainafp/pyhrf
    def testFrom1D(self):

        m1 = np.arange(2 * 3)
        bm = diagBlock([m1])
예제 #5
0
파일: toolsTest.py 프로젝트: ainafp/pyhrf
 def testFromNdarray(self):
     m1 = np.arange(2 * 3)
     bm = diagBlock([m1])
예제 #6
0
    def testRepFromBlocks(self):

        m1 = np.arange(2 * 3).reshape(2, 3)
        m2 = np.arange(2 * 4).reshape(2, 4)

        bm = diagBlock([m1, m2], 2)
예제 #7
0
파일: toolsTest.py 프로젝트: ainafp/pyhrf
    def testAll2D(self):

        m1 = np.arange(2 * 3).reshape(2, 3)
        m2 = np.arange(2 * 4).reshape(2, 4)
        bm = diagBlock([m1, m2])
예제 #8
0
 def testRepFrom2D(self):
     m1 = np.arange(2 * 3).reshape(2, 3)
     bm = diagBlock(m1, 2)
예제 #9
0
    def testRepFrom1D(self):

        m1 = np.arange(2 * 3)
        bm = diagBlock(m1, 5)
예제 #10
0
 def testFromNdarray(self):
     m1 = np.arange(2 * 3)
     bm = diagBlock([m1])
예제 #11
0
    def testFrom1D(self):

        m1 = np.arange(2 * 3)
        bm = diagBlock([m1])
예제 #12
0
    def testAll2D(self):

        m1 = np.arange(2 * 3).reshape(2, 3)
        m2 = np.arange(2 * 4).reshape(2, 4)
        bm = diagBlock([m1, m2])