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