[問題] 如何移除第一筆amplitude資料已回收

看板MATLAB作者 (SportsCenter)時間16年前 (2008/10/17 07:49), 編輯推噓0(000)
留言0則, 0人參與, 最新討論串1/1
這是我用的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
文章代碼(AID): #18zzC9Gd (MATLAB)
文章代碼(AID): #18zzC9Gd (MATLAB)