フィルターのクリア

How to add cost to a polygon?

2 ビュー (過去 30 日間)
SUSHMA MB
SUSHMA MB 2015 年 4 月 6 日
編集済み: SUSHMA MB 2015 年 4 月 9 日
I have coordinates of some polygons and they are stored in a cell, now i want to add cost to those, how can i do that? For ex: the coordinates of the polygons are [12.45 36.05; 12.45 35.7; 12.9 35.65; 12.9 36; 12.7 36; 12.7 36.1; 12.45 36.05] and similarly the coordinates of the other polygons are stored in a single cell. Now i want to add 500 as the cost of the polygon, how can i add?
I have stored the coordinates in x and y in a cell, now how to store the cost?

採用された回答

Image Analyst
Image Analyst 2015 年 4 月 6 日
You could have an array of structures - one structure for each polygon that stores the x, y, and cost as fields. For example, to assign the kth structure of the kth polygon:
polygons(k).x = yourXArray; % for that particular polygon.
polygons(k).y = yourYArray; % for that particular polygon.
polygons(k).cost = yourCostValue; % for that particular polygon.
  2 件のコメント
SUSHMA MB
SUSHMA MB 2015 年 4 月 6 日
How to access cost in this?
Image Analyst
Image Analyst 2015 年 4 月 6 日
To get the cost of the kth polygon, just refer to it
theCost = polygons(k).cost;

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeElementary Polygons についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by