필터 지우기
필터 지우기

Use array functions, logical, and relational operators.

조회 수: 1 (최근 30일)
Vagner Ribeiro
Vagner Ribeiro 2016년 11월 30일
답변: Vishal Neelagiri 2016년 12월 5일
Calculate the percentage of points in the positive quadrant. Assign this to the variable p. The positive quadrant is defined by having both coordinates positive. A percentage is equal to 100 times a fraction. The value should be close to 25%.
I am having a hard time with this. please help

답변 (1개)

Vishal Neelagiri
Vishal Neelagiri 2016년 12월 5일
Let us assume that you have a variable named 'data' that is an n*2 matrix where 'n' corresponds to the total number of points and the x,y coordinates of these n points are provided in their respective 2 columns. You can use the following code in order to calculate the percentage of points in the positive quadrant, store this value in 'p' and then check if this value is equal to 25:
a = 0;
for i=1:n
if (data(i,1)>0)
if (data(i,2)>0)
a = a + 1;
end
end
end
p = (a/n)*100;
if (p==25)
disp('25% of all points are in first quadrant')
end

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by