changeset 217:26111c11d8e4 matrix_opaque_immutable

Some block -> vector renames
author Chris Cannam
date Sat, 11 May 2013 12:01:34 +0100
parents b251e1ab953d
children a7f4eb1cdd72
files yetilab/block/test/test_blockfuncs.yeti yetilab/block/test/test_complex.yeti yetilab/feature/features.yeti yetilab/matrix/test/test_matrix.yeti yetilab/stream/audiofile.yeti yetilab/stream/filter.yeti yetilab/stream/framer.yeti yetilab/stream/playback.yeti yetilab/stream/test/audiofile_reference.yeti yetilab/stream/test/test_audiofile.yeti yetilab/stream/test/test_channels.yeti yetilab/stream/test/test_filter.yeti yetilab/stream/test/test_framer.yeti yetilab/stream/test/test_syntheticstream.yeti yetilab/transform/test/test_fft.yeti yetilab/transform/window.yeti yetilab/vamp/test/test_vamp.yeti yetilab/vamp/vamp.yeti yetilab/vamp/vamppost.yeti
diffstat 19 files changed, 19 insertions(+), 19 deletions(-) [+]
line wrap: on
line diff
--- a/yetilab/block/test/test_blockfuncs.yeti	Sat May 11 11:58:18 2013 +0100
+++ b/yetilab/block/test/test_blockfuncs.yeti	Sat May 11 12:01:34 2013 +0100
@@ -3,7 +3,7 @@
 
 stdSqrt = sqrt;
 
-{ zeros, consts, ones, fromList, list } = load yetilab.block.block;
+{ zeros, consts, ones, fromList, list } = load yetilab.block.vector;
 { sum, mean, multiply, divideBy, sqr, sqrt, rms, fftshift, ifftshift } = load yetilab.block.blockfuncs;
 { compare } = load yetilab.test.test;
 
--- a/yetilab/block/test/test_complex.yeti	Sat May 11 11:58:18 2013 +0100
+++ b/yetilab/block/test/test_complex.yeti	Sat May 11 12:01:34 2013 +0100
@@ -5,7 +5,7 @@
 
 { compare } = load yetilab.test.test;
 
-block = load yetilab.block.block;
+vec = load yetilab.block.vector;
 
 [
 
--- a/yetilab/feature/features.yeti	Sat May 11 11:58:18 2013 +0100
+++ b/yetilab/feature/features.yeti	Sat May 11 12:01:34 2013 +0100
@@ -1,7 +1,7 @@
 
 module yetilab.feature.features;
 
-block = load yetilab.block.block;
+vec = load yetilab.block.vector;
 cplx = load yetilab.block.complex;
 fr = load yetilab.stream.framer;
 
--- a/yetilab/matrix/test/test_matrix.yeti	Sat May 11 11:58:18 2013 +0100
+++ b/yetilab/matrix/test/test_matrix.yeti	Sat May 11 12:01:34 2013 +0100
@@ -2,7 +2,7 @@
 module yetilab.matrix.test.test_matrix;
 
 mat = load yetilab.matrix.matrix;
-block = load yetilab.block.block;
+vec = load yetilab.block.vector;
 
 import yeti.lang: FailureException;
 
--- a/yetilab/stream/audiofile.yeti	Sat May 11 11:58:18 2013 +0100
+++ b/yetilab/stream/audiofile.yeti	Sat May 11 12:01:34 2013 +0100
@@ -12,7 +12,7 @@
 import java.nio: ByteBuffer, ByteOrder;
 
 ch = load yetilab.stream.channels;
-block = load yetilab.block.block;
+vec = load yetilab.block.vector;
 
 decode8u bytes doubles n is ~byte[] -> ~double[] -> number -> () =
    (for [0..n-1] do i:
--- a/yetilab/stream/filter.yeti	Sat May 11 11:58:18 2013 +0100
+++ b/yetilab/stream/filter.yeti	Sat May 11 12:01:34 2013 +0100
@@ -2,7 +2,7 @@
 module yetilab.stream.filter;
 
 mat = load yetilab.matrix.matrix;
-bl = load yetilab.block.block;
+vec = load yetilab.block.vector;
 ch = load yetilab.stream.channels;
 
 load yetilab.stream.streamtype;
--- a/yetilab/stream/framer.yeti	Sat May 11 11:58:18 2013 +0100
+++ b/yetilab/stream/framer.yeti	Sat May 11 12:01:34 2013 +0100
@@ -6,7 +6,7 @@
  * overlapping) frames of data.
  */
 
-block = load yetilab.block.block;
+vec = load yetilab.block.vector;
 bf = load yetilab.block.blockfuncs;
 af = load yetilab.stream.audiofile;
 win = load yetilab.transform.window;
--- a/yetilab/stream/playback.yeti	Sat May 11 11:58:18 2013 +0100
+++ b/yetilab/stream/playback.yeti	Sat May 11 12:01:34 2013 +0100
@@ -1,7 +1,7 @@
 
 module yetilab.stream.playback;
 
-block = load yetilab.block.block;
+vec = load yetilab.block.vector;
 fr = load yetilab.stream.framer;
 af = load yetilab.stream.audiofile;
 ch = load yetilab.stream.channels;
--- a/yetilab/stream/test/audiofile_reference.yeti	Sat May 11 11:58:18 2013 +0100
+++ b/yetilab/stream/test/audiofile_reference.yeti	Sat May 11 12:01:34 2013 +0100
@@ -3,7 +3,7 @@
 
 syn = load yetilab.stream.syntheticstream;
 filt = load yetilab.stream.filter;
-block = load yetilab.block.block;
+vec = load yetilab.block.vector;
 
 pulseChannel rate =
    (pulseFreq = 2;
--- a/yetilab/stream/test/test_audiofile.yeti	Sat May 11 11:58:18 2013 +0100
+++ b/yetilab/stream/test/test_audiofile.yeti	Sat May 11 12:01:34 2013 +0100
@@ -2,7 +2,7 @@
 module yetilab.stream.test.test_audiofile;
 
 af = load yetilab.stream.audiofile;
-bl = load yetilab.block.block;
+vec = load yetilab.block.vector;
 mat = load yetilab.matrix.matrix;
 
 { compare } = load yetilab.test.test;
--- a/yetilab/stream/test/test_channels.yeti	Sat May 11 11:58:18 2013 +0100
+++ b/yetilab/stream/test/test_channels.yeti	Sat May 11 12:01:34 2013 +0100
@@ -3,7 +3,7 @@
 
 ch = load yetilab.stream.channels;
 mat = load yetilab.matrix.matrix;
-bl = load yetilab.block.block;
+vec = load yetilab.block.vector;
 
 { compare, compareUsing } = load yetilab.test.test;
 
--- a/yetilab/stream/test/test_filter.yeti	Sat May 11 11:58:18 2013 +0100
+++ b/yetilab/stream/test/test_filter.yeti	Sat May 11 12:01:34 2013 +0100
@@ -1,7 +1,7 @@
 
 module yetilab.stream.test.test_filter;
 
-bl = load yetilab.block.block;
+vec = load yetilab.block.vector;
 mat = load yetilab.matrix.matrix;
 syn = load yetilab.stream.syntheticstream;
 filt = load yetilab.stream.filter;
--- a/yetilab/stream/test/test_framer.yeti	Sat May 11 11:58:18 2013 +0100
+++ b/yetilab/stream/test/test_framer.yeti	Sat May 11 12:01:34 2013 +0100
@@ -2,7 +2,7 @@
 module yetilab.stream.test.test_framer;
 
 fr = load yetilab.stream.framer;
-block = load yetilab.block.block;
+vec = load yetilab.block.vector;
 mat = load yetilab.matrix.matrix;
 syn = load yetilab.stream.syntheticstream;
 
--- a/yetilab/stream/test/test_syntheticstream.yeti	Sat May 11 11:58:18 2013 +0100
+++ b/yetilab/stream/test/test_syntheticstream.yeti	Sat May 11 12:01:34 2013 +0100
@@ -1,7 +1,7 @@
 
 module yetilab.stream.test.test_syntheticstream;
 
-bl = load yetilab.block.block;
+vec = load yetilab.block.vector;
 mat = load yetilab.matrix.matrix;
 syn = load yetilab.stream.syntheticstream;
 
--- a/yetilab/transform/test/test_fft.yeti	Sat May 11 11:58:18 2013 +0100
+++ b/yetilab/transform/test/test_fft.yeti	Sat May 11 12:01:34 2013 +0100
@@ -2,7 +2,7 @@
 module yetilab.transform.test.test_fft;
 
 { realForward, realInverse } = load yetilab.transform.fft;
-{ list, fromList } = load yetilab.block.block;
+{ list, fromList } = load yetilab.block.vector;
 { complex } = load yetilab.block.complex;
 
 { compare } = load yetilab.test.test;
--- a/yetilab/transform/window.yeti	Sat May 11 11:58:18 2013 +0100
+++ b/yetilab/transform/window.yeti	Sat May 11 12:01:34 2013 +0100
@@ -1,7 +1,7 @@
 
 module yetilab.transform.window;
 
-b = load yetilab.block.block;
+vec = load yetilab.block.vector;
 bf = load yetilab.block.blockfuncs;
 
 cosinewin a0 a1 a2 a3 n =
--- a/yetilab/vamp/test/test_vamp.yeti	Sat May 11 11:58:18 2013 +0100
+++ b/yetilab/vamp/test/test_vamp.yeti	Sat May 11 12:01:34 2013 +0100
@@ -4,7 +4,7 @@
 synthetic = load yetilab.stream.syntheticstream;
 filter = load yetilab.stream.filter;
 mat = load yetilab.matrix.matrix;
-block = load yetilab.block.block;
+vec = load yetilab.block.vector;
 
 { compare, compareUsing } = load yetilab.test.test;
 
--- a/yetilab/vamp/vamp.yeti	Sat May 11 11:58:18 2013 +0100
+++ b/yetilab/vamp/vamp.yeti	Sat May 11 12:01:34 2013 +0100
@@ -10,7 +10,7 @@
 
 import java.util: Map, List;
 
-bl = load yetilab.block.block;
+vec = load yetilab.block.vector;
 fr = load yetilab.stream.framer;
 af = load yetilab.stream.audiofile;
 mat = load yetilab.matrix.matrix;
--- a/yetilab/vamp/vamppost.yeti	Sat May 11 11:58:18 2013 +0100
+++ b/yetilab/vamp/vamppost.yeti	Sat May 11 12:01:34 2013 +0100
@@ -1,7 +1,7 @@
 module yetilab.vamp.vamppost;
 
 mat = load yetilab.matrix.matrix;
-bl = load yetilab.block.block;
+vec = load yetilab.block.vector;
 
 fillOneSamplePerStep config features =
    (fill' n pending features =