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

 Respuesta aceptada

Adam Danz
Adam Danz el 24 de Jul. de 2018
Editada: Adam Danz el 24 de Jul. de 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

Más respuestas (0)

Categorías

Más información sobre Read, Write, and Modify Image en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 24 de Jul. de 2018

Comentada:

el 24 de Jul. de 2018

Community Treasure Hunt

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

Start Hunting!

Translated by