forcing the final column in a matrix to be zero

3 vues (au cours des 30 derniers jours)
A Poyser
A Poyser le 31 Mar 2023
Commenté : A Poyser le 31 Mar 2023
I want to make the final column to go to zero once I go past a certain flag number
k = 10
a = zeros(1:k)
if b < 1
a = (end 0)
end
I think it looks something like this but I know it isn't exactly right
please help
Alex

Réponse acceptée

VBBV
VBBV le 31 Mar 2023
Modifié(e) : VBBV le 31 Mar 2023
k = 10
k = 10
a = ones(3,k)
a = 3×10
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
b = -1;
if b < 1
a(:,end) = 0;
end
a
a = 3×10
1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 0

Plus de réponses (0)

Catégories

En savoir plus sur MATLAB dans Help Center et File Exchange

Produits


Version

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by