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 visualizaciones (últimos 30 días)
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!

Respuesta aceptada

Frank Pernett
Frank Pernett el 6 de Oct. de 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

Más respuestas (0)

Categorías

Más información sobre Resizing and Reshaping Matrices en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by