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??

9 views (last 30 days)
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!

Accepted Answer

Frank Pernett
Frank Pernett on 6 Oct 2021
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

More Answers (0)

Categories

Find more on Resizing and Reshaping Matrices in Help Center and File Exchange

Tags

Products


Release

R2021b

Community Treasure Hunt

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

Start Hunting!