Creating Unit vectors in a loop

13 ビュー (過去 30 日間)
azarang asadi
azarang asadi 2020 年 2 月 3 日
回答済み: James Tursa 2020 年 2 月 4 日
Hey
I have a loop an I'm trying to create some unit vectors as follows:
e1 = [1;0;0;0;0;0;0;0]
e2 = [0;1;0;0;0;0;0;0]
e3 = [0;0;1;0;0;0;0;0]
all the way to
e7 = [0;0;0;0;0;0;0;1]
Thanks
  1 件のコメント
James Tursa
James Tursa 2020 年 2 月 3 日
1) Do you have to use a loop? Is that part of the assignment? There are easier ways to do this other than a loop.
2) You should not use e1 ... e7 as the variable names. This will create problems downstream in your code. I would suggest a cell array instead, e{1}, e{2}, ... , e{7}. This will make it easier to use indexing on these variables. E.g.,

サインインしてコメントする。

採用された回答

Shunichi Kusano
Shunichi Kusano 2020 年 2 月 3 日
Hi azarang,
The following code is an example
vecLength = 8;
I = eye(vecLength);
for i = 1:vecLength
% save the vector as a field of the struct
fieldname = ['e' num2str(i)];
unitVectors.(fieldname) = I(:,i);
end
HTH

その他の回答 (1 件)

James Tursa
James Tursa 2020 年 2 月 4 日
Since a complete answer has already been posted, I will post this one using a cell array result which will be much easier to index:
n = whatever length vectors you want
e = mat2cell(eye(n),ones(n,1),n);

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by