average of each two vectors of a matrix
Mostra commenti meno recenti
I have a matrix of n*n for example 10*5
x=rand(10,5)
Then I want to get the average of each two row. For example the first two row (each element ) etc
I will have a matrix of 5*5 after that
Risposta accettata
Più risposte (1)
Azzi Abdelmalek
il 9 Ott 2014
Modificato: Azzi Abdelmalek
il 9 Ott 2014
a=reshape(mean(permute(reshape(x',5,2,[]),[2 1 3])),5,5)'
Categorie
Scopri di più su Creating and Concatenating Matrices in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!