How to use the x-axis coordinate as a reference in a set of data points, divide 5 coordinate points at equal intervals, and find these points. Thanks a lot for your answer.
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
How to use the x-axis coordinate as a reference in a set of data points, divide 5 coordinate points at equal intervals, and find these points. Thanks a lot for your answer.
0 commentaires
Réponses (2)
Walter Roberson
le 19 Mar 2022
Modifié(e) : Walter Roberson
le 19 Mar 2022
linspace(first_x, last_x, 5)
if the "5 coordinate points" includes the first and the last point.
If the requirement is 5 points excluding the first and last point, then increase the 5 in linspace() to 7.
If the requirement is to have 5 equal intervals, use 6 in linspace()
Voir également
Catégories
En savoir plus sur Logical dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!