Making matrix from coordinates

3 ビュー (過去 30 日間)
Ishani Mukherjee
Ishani Mukherjee 2020 年 10 月 11 日
コメント済み: Ishani Mukherjee 2020 年 10 月 11 日
I have 460 x and y coordinates. How do I make a matrix ? Thanks in advance.

回答 (1 件)

Ameer Hamza
Ameer Hamza 2020 年 10 月 11 日
編集済み: Ameer Hamza 2020 年 10 月 11 日
See meshgrid()
x; % vector of x-values
y; % vector of y-values
[X, Y] = meshgrid(x, y)
  5 件のコメント
Ameer Hamza
Ameer Hamza 2020 年 10 月 11 日
Something like this
x = [1,2,3];
y = [2,3,4];
[X, Y] = meshgrid(x, y);
plot(X(:), Y(:), '+')
Ishani Mukherjee
Ishani Mukherjee 2020 年 10 月 11 日
Thanks!!

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeSurface and Mesh Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by