Simplest way to create a unit vector in Matlab?

조회 수: 113 (최근 30일)
Mehdi
Mehdi 2022년 9월 18일
답변: Bruno Luong 2022년 9월 18일
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]

채택된 답변

Bruno Luong
Bruno Luong 2022년 9월 18일
if by "unit" vector you means vector where the elements are all 1s
len = 9;
V = ones(1,len)
V = 1×9
1 1 1 1 1 1 1 1 1

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

태그

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by