query in solving parallel to serial conversion process

ml = 4;
i have done this conversion process but error is coming
% Parallel -> Serial conversion
Rx_sel_data = reshape(Rx_para_data,1, para*ml);
Rx_sel_data_LS = reshape(Rx_para_data_LS, 1, para*ml);
Rx_sel_data_LMMSE = reshape(Rx_para_data_LMMSE, 1, para*ml);
**Error is like this:-
??? Error using ==> reshape
To RESHAPE the number of elements must not change.
Rx_sel_data = reshape(Rx_para_data,para, para*ml);
**
how can i get rid of this problem?

1 件のコメント

Walter Roberson
Walter Roberson 2013 年 4 月 6 日
What does
size(Rx_para_data)
disp(para)
disp(m1)
show ?

サインインしてコメントする。

回答 (0 件)

質問済み:

2013 年 4 月 6 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by