필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

plz see my code and save 'mj' result

조회 수: 3 (최근 30일)
kaavya subramani
kaavya subramani 2015년 10월 7일
마감: MATLAB Answer Bot 2021년 8월 20일
ci=1;
mj=[];
for vi=1:length(kp)
if kp(vi)>=450
mj(ci)=vi;
ci=ci+1;
end
end

답변 (1개)

Walter Roberson
Walter Roberson 2015년 10월 7일
편집: Walter Roberson 2015년 10월 7일
save('SomeFileName.mat', 'mj');
By the way:
mj = find(kp >= 450);

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by