You have 2 points, and you want N number of points between these 2 points. It's like making a line between 2 points. It takes start and end points, and the number of points you want in between.
shaz (2021). Get points for a line between 2 points (https://www.mathworks.com/matlabcentral/fileexchange/29104-get-points-for-a-line-between-2-points), MATLAB Central File Exchange. Retrieved .
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Create scripts with code, output, and formatted text in a single executable document.
In the source code,
if m == Inf "|| m == -Inf"
I think the latter condition (in quotation mark) is required for some case. Thanks!
Thank you, it is useful in certain applications.
This is basically just a wrapper for LINSPACE that does a whole bunch of unnecessary computations. It doesn't matter what the slope, m, is for this computation and it is computed and used to vary how LINSPACE is called. LINSPACE can be called with the same start and end point with a number of divisions and it will be the same as just replicating that number. The author didn't recognize this.
-Anything with four lower case Ls in a row is confusing.
-There is no help, no H1 line
I would also think that for something like this to be useful, it should work in nD space. I.e. start point and end point could be vectors of any dimension and it would output that many vectors corresponding to the line through n dimensions.