how to make the matrix 4 by 4 with the value of 10

조회 수: 8 (최근 30일)
amina shafanejad
amina shafanejad 2015년 5월 16일
댓글: Stephen23 2015년 6월 25일
hello i want to make the matrix with the dimension of 4 by 4 and each element have the value of 10 can u help me with that?

답변 (2개)

Stephen23
Stephen23 2015년 5월 16일
편집: Stephen23 2015년 5월 21일
Method one:
A = 10 * ones(4)
Method two:
A(1:4,1:4) = 10
Method three:
A = 10 + zeros(4)
Method four:
A = repmat(10,4,4)
Method five:
A = [10,10,10,10;10,10,10,10;10,10,10,10;10,10,10,10]
Method six:
A(4,4) = 0;
A(:) = 10
Method seven:
A = bsxfun(@plus,[1,1,1,1],[9;9;9;9])
Method eight:
A = [10;10;10;10]*[1,1,1,1]
Method nine:
A = 10.^ones(4)
Method ten:
A = toeplitz([10,10,10,10],[10,10,10,10])
Method eleven:
A = round(real(ones(4)^2.660965))
Method twelve:
A = mod(10,zeros(4))
Method thirteen:
A = accumarray([1,1],10,[4,4],@sum,10)
  댓글 수: 2
Jan
Jan 2015년 5월 21일
What about: 10 + zeros(4) ? ;-)
Stephen23
Stephen23 2015년 5월 21일
편집: Stephen23 2015년 5월 21일
Already there as Method Three :)
I avoided 9+ones(4) though, for being basically the same thing.

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


Star Strider
Star Strider 2015년 5월 19일
And still another possibility:
A = randi([10 10], 4, 4);
  댓글 수: 3
Star Strider
Star Strider 2015년 5월 21일
Thank you!
Stephen23
Stephen23 2015년 6월 25일
That wins the inaugural "Best Misuse of a MATLAB Function Award".
My other favorite is this one:

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

카테고리

Help CenterFile Exchange에서 Just for fun에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by