Borrar filtros
Borrar filtros

How can i rearrange a vector ?

2 visualizaciones (últimos 30 días)
Abdelwahab Fawzy
Abdelwahab Fawzy el 1 de Sept. de 2015
Comentada: the cyclist el 2 de Sept. de 2015
I need you help in matlab
if A=[8 1 12 3 6 10 13 3];
AVG=sum(A)/length(A);
i need to neglect all values that below the AVG
so i get B=[8 12 10 13]
can you help me to perform this task in general

Respuesta aceptada

the cyclist
the cyclist el 1 de Sept. de 2015
B = A(A>=mean(A))
  2 comentarios
Abdelwahab Fawzy
Abdelwahab Fawzy el 1 de Sept. de 2015
Editada: Abdelwahab Fawzy el 1 de Sept. de 2015
if i have number of nodes (8) each node has its ID as follow ID=[ 1 2 3 4 5 6 7 8]
each node has its related Power using structure array ID.power=A
A=[8 1 12 3 6 10 13 3]
you help me to rearrange the matrix A depending on the mean
what about rearranging the ID vector ?
thanks in advance
result ID=[1 3 6 7]
the cyclist
the cyclist el 2 de Sept. de 2015
I don't really understand the new question.
(Also, you might consider posting a new question. More people will see it.)

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Matrices and Arrays en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by