Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

Process each element in my buffer ?

1 vue (au cours des 30 derniers jours)
I Made
I Made le 11 Mar 2013
Clôturé : MATLAB Answer Bot le 20 Août 2021
As example i have this data on my buffer
1 2 3 4 5 6 7 8 9 10
2 3 4 5 6 7 8 9 10 1
3 4 5 6 7 8 9 10 1 2
i want to calculate each column using formula, sum all and divide by 2 so i get :
2 4,5 6 7,5 9 10,5 12 13,5 10 6,5
How can i do that, the main idea i asking here is how to apply a certain formula to each column in a buffer?

Réponses (1)

Azzi Abdelmalek
Azzi Abdelmalek le 11 Mar 2013
Modifié(e) : Azzi Abdelmalek le 11 Mar 2013
A=[1 2 3 4 5 6 7 8 9 10
2 3 4 5 6 7 8 9 10 1
3 4 5 6 7 8 9 10 1 2]
out=sum(A)/2

Cette question est clôturée.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by