Simplest way to create a unit vector in Matlab?
56 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposta accettata
Bruno Luong
il 18 Set 2022
if by "unit" vector you means vector where the elements are all 1s
len = 9;
V = ones(1,len)
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Get Started with MATLAB 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!