creat matrix with specific row element

Create a matrix of 100 rows and 100 columns. The odd columns should contain values 2, and the even columns, values 0

Respuestas (1)

KSSV
KSSV el 16 de Oct. de 2020
iwant = zeros(100) ;
iwant(:,1:2:end) = 2 ;

Categorías

Productos

Etiquetas

Preguntada:

el 16 de Oct. de 2020

Respondida:

el 16 de Oct. de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by