From 8fd6a5bd046991432b0d651b728f7d6efaa265cf Mon Sep 17 00:00:00 2001 From: Piotr Krysik Date: Wed, 1 Jul 2009 00:12:20 +0200 Subject: corrected viterbi_generator test generator --- viterbi_generator/tests/test_gen.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/viterbi_generator/tests/test_gen.m b/viterbi_generator/tests/test_gen.m index a2639fb..b0cb2ac 100755 --- a/viterbi_generator/tests/test_gen.m +++ b/viterbi_generator/tests/test_gen.m @@ -18,7 +18,7 @@ load tests/data/normal_burst.dat; SYMBOLS = make_symbols(Lh); START = make_start(Lh,SYMBOLS); -STOP = make_stops(Lh,SYMBOLS); +STOPS = make_stops(Lh,SYMBOLS); [increment, pm_candidates_imag, pm_candidates_real] = equations_gen(Lh); @@ -57,11 +57,11 @@ for i=1:BURST_SIZE, fprintf(test_file," input[%d] = gr_complex(%0.10f,%0.10f);\n",i-1, real(normal_burst(i)), imag(normal_burst(i))); end -[STOPS_NUM c] = size(STOP); +[c STOPS_NUM] = size(STOPS); stop_states=[" unsigned int stop_states[" int2str(STOPS_NUM) "] = { "]; for i=1:STOPS_NUM, - stop_states=[ stop_states int2str(ceil(STOP(i)/2)-1) ", "]; + stop_states=[ stop_states int2str(ceil(STOPS(i)/2)-1) ", "]; end stop_states=[ stop_states " };\n\n" ]; -- cgit v1.2.3