[問題] 如何移除第一筆amplitude資料已回收
這是我用的code:
%% For computing amplitude statistics, we want to consider only valid
multipath components.
%% By using the persistence process vector, the taps that are not valid
multipath are forced to zero.
FinalTapL2 = TapL2.*PerSis_L2;
%% We sort the tap amplitudes and remove the amplitudes that are zero. This
%% process is repeated for NLOS-S and NLOS.
for jw= 1:sizL2
SortTapNLOSS(jw,:)= sort(FinalTapL2(jw,:));
end
%%After sorting, we determine the number of amplitude samples which are
%%zero in each tap amplitude vector.
for jj=1:nTapL2
flag = 0;
for jk = 1:length(SortTapNLOSS(1,:))
if((flag == 0) &&(SortTapNLOSS(jj,jk) ~= 0))
ampThreshL2(jj) = jk;
flag = 1;
end
end
end
我想要移除跑出來的圖的第一筆amplitude資料
請問我應該如何修改?
謝謝囉!
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 75.180.15.8
MATLAB 近期熱門文章
PTT數位生活區 即時熱門文章