フィルターのクリア

How to add three dimensional data points to MATLAB

3 ビュー (過去 30 日間)
Timothy Turk
Timothy Turk 2020 年 9 月 14 日
コメント済み: Timothy Turk 2020 年 9 月 15 日
I want to add 3D data points associated with spacecraft debris positions in space. Do I create a 3 x n matrix of Latitude, Longitude, Altitude? The goal is to use the multiobjective genetic algroithm to locate the maximum density of debris objects at a given point in time and plot it.
  6 件のコメント
Adam Danz
Adam Danz 2020 年 9 月 15 日
Better to use logical indexing; if your data are a mx3 matrix as you show above,
ineedX = longitude >= 0 & longitude <= 90;
ineedY = latitude >= -180 & latitude <= 180;
ineedZ = altitude >= 650 & altitude <= 850;
select = ineedX & ineedY & ineedZ;
m(select, :)
Timothy Turk
Timothy Turk 2020 年 9 月 15 日
Thank you, Adam.

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

採用された回答

KSSV
KSSV 2020 年 9 月 15 日

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGeographic Plots についてさらに検索

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by