Simplest way to create a unit vector in Matlab?
34 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Mehdi
le 18 Sep 2022
Réponse apportée : Bruno Luong
le 18 Sep 2022
I am trying to find the simplest way to create a unit vector with arbitrary number of elements in Matlab.
for example V=[1 1 1 1 1 1 1 1 1]
0 commentaires
Réponse acceptée
Bruno Luong
le 18 Sep 2022
if by "unit" vector you means vector where the elements are all 1s
len = 9;
V = ones(1,len)
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Get Started with MATLAB 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!