Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
plz see my code and save 'mj' result
조회 수: 4 (최근 30일)
이전 댓글 표시
ci=1;
mj=[];
for vi=1:length(kp)
if kp(vi)>=450
mj(ci)=vi;
ci=ci+1;
end
end
댓글 수: 0
답변 (1개)
Walter Roberson
2015년 10월 7일
편집: Walter Roberson
2015년 10월 7일
save('SomeFileName.mat', 'mj');
By the way:
mj = find(kp >= 450);
댓글 수: 0
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!