tags:

views:

50

answers:

2

i have an arry lets say

A=[2 3 4 5 6 7 8 9]

i want to get middle point

like B=[5]

how to do it?

+1  A: 

Try to use end to automatically obtain the index of the last entry, and use ceil to round up the half length when the length is not even

B=A(ceil(end/2))
YYC
A: 

MATLAB's built-in median function will work. If you have an array with an odd number of elements it pulls the middle point. Otherwise if you have an even number of points, it averages the two points in the middle.

Doresoom

related questions