Writing a script that tells you the quadrant of the coordinates

9 ビュー (過去 30 日間)
Seth
Seth 2014 年 10 月 26 日
回答済み: Rashmil Dahanayake 2014 年 10 月 26 日
I am not sure how to go about this question. Any help will be greatly appreciated. Write a function quadrant that receives two arguments, which are a pair of (X, Y) coordinates, and returns the corresponding quadrant in roman numerals (i.e. I-IV), for example,>> fprintf('Input coordinates will be in quadrant %s.\n',quadrant(3,4)) Input coordinates will be in quadrant I.
  1 件のコメント
Roger Stafford
Roger Stafford 2014 年 10 月 26 日
Hint: See if you can convert the logicals x>=0 and y>=0 into numbers from one to four in accordance with the quadrant. Is really is easy to do.

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

採用された回答

Rashmil Dahanayake
Rashmil Dahanayake 2014 年 10 月 26 日
x=4;y=-7; %test value
switch true
case x >=0 && y>0
disp('Quadrant I')
case x <=0 && y>0
disp('Quadrant II')
case x <=0 && y<0
disp('Quadrant III')
case x >=0 && y<0
disp('Quadrant IV')
otherwise
disp('Origin')
end

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by