Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

plz see my code and save 'mj' result

6 vues (au cours des 30 derniers jours)
kaavya subramani
kaavya subramani le 7 Oct 2015
Clôturé : MATLAB Answer Bot le 20 Août 2021
ci=1;
mj=[];
for vi=1:length(kp)
if kp(vi)>=450
mj(ci)=vi;
ci=ci+1;
end
end

Réponses (1)

Walter Roberson
Walter Roberson le 7 Oct 2015
Modifié(e) : Walter Roberson le 7 Oct 2015
save('SomeFileName.mat', 'mj');
By the way:
mj = find(kp >= 450);

Cette question est clôturée.

Community Treasure Hunt

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

Start Hunting!

Translated by