Effacer les filtres
Effacer les filtres

Auto update row index to match the variable length

1 vue (au cours des 30 derniers jours)
Sankalp Garud
Sankalp Garud le 27 Sep 2021
Réponse apportée : Konrad le 27 Sep 2021
Hi there,
This should be a basic question. I am trying to create a matrix
b(:,k) = a
Does not work. While
b(1:52, k) = a
Works. Is there some syntax where I don't have to put in the exact range for the rows and it auto updates?
Sankalp

Réponses (1)

Konrad
Konrad le 27 Sep 2021
Hi
you can use
b(1:numel(a),k) = a
if k is scalar.
Best, K

Catégories

En savoir plus sur Data Types dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by