필터 지우기
필터 지우기

how n(20*20 matrix) can obtain

조회 수: 3 (최근 30일)
vipul utsav
vipul utsav 2012년 12월 28일
mean(s./n)=0.5
s= 1 2 3 4 5 ...20
20 19 18 17 16....1
1 2 3 4 5 ...20
20 19 18 17 16....1
1 2 3 4 5 ...20
20 19 18 17 16....1
...................
...................
20 19 18 17 16....1
s is a 20*20 matrix and it is fix; how n(20*20 matrix) can obtain such it follow above equation.
  댓글 수: 2
Image Analyst
Image Analyst 2012년 12월 28일
You're posting enough now that you should learn how to highlight your code and click the {}Code button to format your code. Make sure there is a blank line before the first line of code though.
Image Analyst
Image Analyst 2012년 12월 28일
You don't click {}Code first. If you do that, you get that useless "if true" like you just did. Just do what I said: make sure there's a blank line before your code, then highlight all your code (even intermediate blank lines if it's a long bit of code), then click {}Code.

댓글을 달려면 로그인하십시오.

채택된 답변

Image Analyst
Image Analyst 2012년 12월 28일
It's trivial. Just solve the equation for n! You'll find it's twice s. Here's proof:
% Construct s.
s2rows = [1:20;20:-1:1];
s = repmat(s2rows, [10,1])
% Here's n. It's just twice s!
n = s /0.5
% Proof that the mean = 0.5
theMean = mean2(s ./ n)
  댓글 수: 5
Image Analyst
Image Analyst 2012년 12월 28일
And it doesn't matter WHAT s is. It could be anything at all. Just look at the equation - it's really basic math. No matter what s is, s over (2s) will be 1/2 for every single element, and thus give you a mean of 0.5. Is there something either I or you are not understanding here?
vipul utsav
vipul utsav 2012년 12월 29일
i am really sorry, i did mistake,i misunderstand,,, it's 100% right answer

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

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