Info
This question is closed. Reopen it to edit or answer.
plz see my code and save 'mj' result
1 view (last 30 days)
Show older comments
ci=1;
mj=[];
for vi=1:length(kp)
if kp(vi)>=450
mj(ci)=vi;
ci=ci+1;
end
end
0 Comments
Answers (1)
Walter Roberson
on 7 Oct 2015
Edited: Walter Roberson
on 7 Oct 2015
save('SomeFileName.mat', 'mj');
By the way:
mj = find(kp >= 450);
0 Comments
This question is closed.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!