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)
Afficher commentaires plus anciens
ci=1;
mj=[];
for vi=1:length(kp)
if kp(vi)>=450
mj(ci)=vi;
ci=ci+1;
end
end
0 commentaires
Réponses (1)
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);
0 commentaires
Cette question est clôturée.
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!