Neighboring distance of data points

バージョン 2.1.0.0 (1.12 KB) 作成者: Joris Meurs
Calculate the distance between neighboring data points
ダウンロード: 75
更新 2016/4/28

ライセンスの表示

File name : 'ndistance.m'. This file can be used
for calculating the distance between neighbouring data
points based on Pythagoras theory:
d = sqrt((X(l+1)-X(l)).^2+(Y(l+1)-Y(l)).^2)

or in short:

d = sqrt((dX).^2+(dY).^2))

Four input values: 'X', 'Y'
One output value: 'D'

X = vector of x-values
Y = vector of y-values

D = distance between two neighbouring data points
Additionally, a plot of the distance against the Y-vector
will be generated

Input syntax: d = ndistance(X,Y)

Developed by Joris Meurs BASc (2016)

引用

Joris Meurs (2024). Neighboring distance of data points (https://www.mathworks.com/matlabcentral/fileexchange/56289-neighboring-distance-of-data-points), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R2014b
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersCurve Fitting Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!
バージョン 公開済み リリース ノート
2.1.0.0

Description updated

2.0.0.0

Added picture
Removed error in plot

1.0.0.0