Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
plz see my code and save 'mj' result
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
ci=1;
mj=[];
for vi=1:length(kp)
if kp(vi)>=450
mj(ci)=vi;
ci=ci+1;
end
end
0 comentarios
Respuestas (1)
Walter Roberson
el 7 de Oct. de 2015
Editada: Walter Roberson
el 7 de Oct. de 2015
save('SomeFileName.mat', 'mj');
By the way:
mj = find(kp >= 450);
0 comentarios
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!