creat matrix with specific row element
Mostra commenti meno recenti
Create a matrix of 100 rows and 100 columns. The odd columns should contain values 2, and the even columns, values 0
Risposte (1)
KSSV
il 16 Ott 2020
iwant = zeros(100) ;
iwant(:,1:2:end) = 2 ;
Categorie
Scopri di più su Logical in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!