Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

plz see my code and save 'mj' result

1 visualizzazione (ultimi 30 giorni)
kaavya subramani
kaavya subramani il 7 Ott 2015
Chiuso: MATLAB Answer Bot il 20 Ago 2021
ci=1;
mj=[];
for vi=1:length(kp)
if kp(vi)>=450
mj(ci)=vi;
ci=ci+1;
end
end

Risposte (1)

Walter Roberson
Walter Roberson il 7 Ott 2015
Modificato: Walter Roberson il 7 Ott 2015
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