필터 지우기
필터 지우기

How to replace all elements of matrix with zero except some elements(localpeaks?

조회 수: 2 (최근 30일)
Hello,I have a matrix of data with size 1*256. I found local peaks using [pks loc]=findpeaks(hh2) ;now in my matrix i want to put zero instead of all elements except peaks that i found.can any one help me plz?

답변 (1개)

Christopher  Davis
Christopher Davis 2016년 2월 10일
I would try something like this:
x=1:length(hh2);
x(loc)=[];
hh2(x)=0;

카테고리

Help CenterFile Exchange에서 Descriptive Statistics에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by