Simplest way to create a unit vector in Matlab?
63 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
Bruno Luong
2022 年 9 月 18 日
if by "unit" vector you means vector where the elements are all 1s
len = 9;
V = ones(1,len)
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!