Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
how can I eliminate coloum with mean largest than a certain value?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hi I have a matrix nxn called prices, where in each column I have an Historical stock prices. I want to eliminate all columns in which the mean are largest than a certain value (for example 50)
0 comentarios
Respuestas (1)
Azzi Abdelmalek
el 13 de Abr. de 2016
Editada: Azzi Abdelmalek
el 13 de Abr. de 2016
largest_value=50
idx=mean(A)>largest_value
A(:,idx)=[]
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!