Info

この質問は閉じられています。 編集または回答するには再度開いてください。

plz see my code and save 'mj' result

1 回表示 (過去 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