Area calculation for overlapping region
4 ビュー (過去 30 日間)
古いコメントを表示
I have three overlapping network in a service area with Radius=600,200 and 200. the networks with Radius 200 are inner networks in the service area of radius 600. I use for loop to input radius , and then calculate area. But I don't know how to calculate
As=A1-(A2+A3). where
A1=pi*600^2,
A2=pi*200^2, and
A3=pi*200^2.
please help me
0 件のコメント
採用された回答
Image Analyst
2016 年 4 月 24 日
That's the formula for circumference, not area! You need to square the radius
A1 = pi * 600^2
A2 = pi * 200^2
A3 = pi * 200^2
As = A1 - (A2 + A3)
その他の回答 (2 件)
Khadija Khan
2016 年 4 月 24 日
編集済み: Khadija Khan
2016 年 4 月 24 日
1 件のコメント
Image Analyst
2016 年 4 月 24 日
Just like I showed you in my answer. If you want to save all of them, then give As an index:
As(loopIndex) = A1-(A2+A3);
参考
カテゴリ
Help Center および File Exchange で Introduction to Installation and Licensing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!