Info

此问题已关闭。 请重新打开它进行编辑或回答。

plz see my code and save 'mj' result

2 次查看(过去 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