Dividing Ranges Into subranges

I would like to get 3 subranges of equal interval from the given range a=0.0035(min) b=0.11935(max) And also I would like to get midpoint of each subranges. Please let me know how to do this
Thanks

 Accepted Answer

Adam Danz
Adam Danz on 24 Jul 2018
Edited: Adam Danz on 24 Jul 2018
The star of this show is linspace(). This assumes the start of segment #2 is the end of segment #1 and so on. Once you have the start and stop points and each segment has the same length, you just need to subtract half of the length from each end point to get the middle points.
a=0.0035
b=0.11935
nSegments = 3;
endPoints = linspace(a,b,nSegments + 1); %4 endpoints for 3 segments
start = endPoints(1:end-1); %3 starting points
stop = endPoints(2:end); %3 stopping points
midPoints = stop - ((stop(1)-start(1))/2); %3 middle points

More Answers (0)

Categories

Find more on Read, Write, and Modify Image 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!