Plotting every 15th elements of a vector

3 views (last 30 days)
I have this vector file which is 345*1 and I only want to plot every 15th elemts versues time i tried this
plot(ASCM_time(1:15:end),ASCM_GPS_number_satellite,'g')
but it doent work, and it tells me
"Error using plot Vectors must be the same lengths."
both vectors are 345*1.
what should I do? any suggestion? please thanks

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 31 Mar 2014
plot(ASCM_time(1:15:end),ASCM_GPS_number_satellite(1:15:end),'g')

More Answers (0)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!