how velocize it? (vectorize it)
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
a=magic(8)
b=[1 3 2 4 5 5 8 3] % (b is always >0)
[~,c]=size(a);
B=a;
for i=1:c
if b(i)>1
B(1:b(i)-1,i)=0;
end
end
B
0 commentaires
Réponse acceptée
Bruno Luong
le 8 Oct 2023
a=magic(8)
b=[1 3 2 4 5 5 8 3] % (b is always >0)
B = a.* ((1:size(a,1))' >= b)
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Assembly dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!