Info
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
plz see my code and save 'mj' result
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
ci=1;
mj=[];
for vi=1:length(kp)
if kp(vi)>=450
mj(ci)=vi;
ci=ci+1;
end
end
0 Commenti
Risposte (1)
Walter Roberson
il 7 Ott 2015
Modificato: Walter Roberson
il 7 Ott 2015
save('SomeFileName.mat', 'mj');
By the way:
mj = find(kp >= 450);
0 Commenti
Questa domanda è chiusa.
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!