필터 지우기
필터 지우기

Create a 2 by 5 matrix of all ones and store it in a Variable. Then, replace the second column in the matrix with a -12 and a 36??

조회 수: 7 (최근 30일)
Hi dear all, this question comes from my uni instructor.
The questoin is kinda wired but I was wondering if you could give me a hand.
Thank you guys!

채택된 답변

Frank Pernett
Frank Pernett 2021년 10월 6일
x = ones(2,5)
x = 2×5
1 1 1 1 1 1 1 1 1 1
x(1,2) = -12
x = 2×5
1 -12 1 1 1 1 1 1 1 1
x(2,2) = 36
x = 2×5
1 -12 1 1 1 1 36 1 1 1

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기

태그

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by