creat matrix with specific row element
Mostrar comentarios más antiguos
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
el 16 de Oct. de 2020
iwant = zeros(100) ;
iwant(:,1:2:end) = 2 ;
Categorías
Más información sobre Logical en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!