how to store values in a single array

2 次查看(过去 30 天)
This is a part of my code. i want to store the end values of rec_sr in a single array. How to do it?? Please help.
rec_sr=(h(1,:)).*trans+n(1,:); % Source to Relay Transmission
rec_sr_re = real(rec_sr); % real
rec_sr_im = imag(rec_sr); % imaginary
rec_srHat(find(rec_sr_re < 0 & rec_sr_im < 0)) = -1 + -1*j;
rec_srHat(find(rec_sr_re >= 0 & rec_sr_im > 0)) = 1 + 1*j;
rec_srHat(find(rec_sr_re < 0 & rec_sr_im >= 0)) = -1 + 1*j;
rec_srHat(find(rec_sr_re >= 0 & rec_sr_im < 0)) = 1 - 1*j;
  1 个评论
Michael Haderlein
Michael Haderlein 2014-8-19
What do you mean with "end value s"? rec_sr seems to be a one-dimensional array, so there's only one last value. Or do you mean the imag and the real part of the end value? Then it's just
last_entry=[real(rec_sr) imag(rec_sr)].
If you need it quite often, you cut put that into an anonymous function like
real_imag=@(x) [real(x),imag(x)];
last_entry=real_imag(rec_sr(end));

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Multidimensional Arrays 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by