# HG changeset patch # User Chris Cannam # Date 1367855629 -3600 # Node ID 0b187d84549167a1dd15b2b9d9fd1142b410659c # Parent 9d4893157334f5c48c89dc608fda2a592d124aca Simplify diff -r 9d4893157334 -r 0b187d845491 yetilab/block/complex.yeti --- a/yetilab/block/complex.yeti Mon May 06 16:50:52 2013 +0100 +++ b/yetilab/block/complex.yeti Mon May 06 16:53:49 2013 +0100 @@ -74,17 +74,6 @@ bl.fromList (map angle cc); { - real, - imaginary, - complex, - magnitude, - angle, - add, - scale, - zeros, - magnitudes, - angles, -} as { real is cplx -> number, imaginary is cplx -> number, complex is number -> number -> cplx, diff -r 9d4893157334 -r 0b187d845491 yetilab/matrix/matrix.yeti --- a/yetilab/matrix/matrix.yeti Mon May 06 16:50:52 2013 +0100 +++ b/yetilab/matrix/matrix.yeti Mon May 06 16:53:49 2013 +0100 @@ -237,21 +237,6 @@ fi; { - generate, - constMatrix, randomMatrix, zeroMatrix, identityMatrix, zeroSizeMatrix, - width, height, - equal, - copyOf, - transposed, - flipped, toRowMajor, toColumnMajor, - scaled, - resizedTo, - asRows, asColumns, - sum = sum', product, - concat, - rowSlice, columnSlice, - newMatrix, newRowVector, newColumnVector, -} as { generate is (number -> number -> number) -> { .rows is number, .columns is number } -> matrix, constMatrix is number -> { .rows is number, .columns is number } -> matrix, randomMatrix is { .rows is number, .columns is number } -> matrix, @@ -270,7 +255,7 @@ resizedTo is { .rows is number, .columns is number } -> matrix -> matrix, asRows is matrix -> list, asColumns is matrix -> list, - sum is matrix -> matrix -> matrix, + sum is matrix -> matrix -> matrix = sum', product is matrix -> matrix -> matrix, concat is (Horizontal () | Vertical ()) -> list -> matrix, rowSlice is number -> number -> matrix -> matrix, diff -r 9d4893157334 -r 0b187d845491 yetilab/stream/filter.yeti --- a/yetilab/stream/filter.yeti Mon May 06 16:50:52 2013 +0100 +++ b/yetilab/stream/filter.yeti Mon May 06 16:53:49 2013 +0100 @@ -149,11 +149,6 @@ fi; { - withDuration, - delayedBy, - multiplexed, - repeated, -} as { withDuration is number -> stream -> stream, delayedBy is number -> stream -> stream, multiplexed is list -> stream, diff -r 9d4893157334 -r 0b187d845491 yetilab/stream/syntheticstream.yeti --- a/yetilab/stream/syntheticstream.yeti Mon May 06 16:50:52 2013 +0100 +++ b/yetilab/stream/syntheticstream.yeti Mon May 06 16:53:49 2013 +0100 @@ -54,12 +54,6 @@ }); { - generated, - precalculated, - sinusoid, - whiteNoise, - silent, -} as { generated is number -> (number -> number) -> stream, precalculated is number -> block -> stream, sinusoid is number -> number -> stream,