creating a 8x8 matrix with only -1

조회 수: 10 (최근 30일)
Aimee
Aimee 2024년 10월 27일
댓글: Aimee 2024년 12월 10일 0:39
i want to create a 8x8 matrix withn only the number -1 how do i do it?

답변 (3개)

Torsten
Torsten 2024년 10월 27일
이동: Torsten 2024년 10월 27일
Use "ones" to build a matrix of ones and multiply it by (-1).
  댓글 수: 1
Walter Roberson
Walter Roberson 2024년 10월 28일
You have to be careful to build up the 8 x 8 size for the ones() call, out of pure -1's. It is certainly possible to do.

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


埃博拉酱
埃博拉酱 2024년 10월 28일
편집: 埃博拉酱 2024년 10월 29일
-ones(8)
Append at 20241029 as a Cody challenge:
rand(single('('-' '))
%You don't even need -1 in your code. This can be applied to any challenge that has a limit on the number that appears in the code.
%If you're okay with using characters that aren't on your keyboard, you can even just use a Backspace character (U+0008).
  댓글 수: 6
Walter Roberson
Walter Roberson 2024년 10월 29일
The + are not needed
A = -ones((-1 -1 -1 -1)*(-1 -1))
A = 8×8
-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>
DGM
DGM 2024년 10월 29일
D'oh!
I must have had my blinders on when I was coming up with that.

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


Aimee
Aimee 2024년 10월 29일
hey guys thanks for all the help i got it eventuallyt with the code A = -ones(8,8). just incase anyone sees this and need help in the future.
  댓글 수: 7
DGM
DGM 2024년 10월 30일
편집: DGM 2024년 10월 30일
As a counterexample, "create fire with only flint and steel" typically does not imply that the fire contains either flint or steel. Maybe we're all wrong to be creating a matrix full of -1.
Aimee
Aimee 2024년 12월 10일 0:39
no youre correct i wanted an 8x8 matrix where the only elements were -1 i managed it eventually with the formula i used above though.

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

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

제품


릴리스

R2024b

Community Treasure Hunt

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

Start Hunting!

Translated by