matrix manipulations of columns
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
How can I replace all even columns of matrix A by columns of ones.
pls note that matrix A is A=random('norm',3,0.2,100,100)
thx
0 Commenti
Risposta accettata
Azzi Abdelmalek
il 8 Mag 2013
Modificato: Azzi Abdelmalek
il 8 Mag 2013
A=random('norm',3,0.2,100,100)
A(:,2:2:end)=ones(size(A(:,2:2:end)))
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Resizing and Reshaping Matrices in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!