任意サイズの単位ベクトルの作り方
Ältere Kommentare anzeigen
任意サイズの単位ベクトルの作り方を教えてください。
a=[1,1,1,1,1,…]
簡単に作れる方法を知りたいです。
Antworten (1)
Kojiro Saito
am 29 Dez. 2018
onesを使う方法が最も簡単だと思います。1行n列の単位ベクトルを作成したい時、ones(1, n)で作成できます。
例えばnが20の時はこんな感じです。
n = 20;
a = ones(1, n);
Ref: onesのドキュメント (R2015b)
2 Kommentare
Masato Hayashi
am 11 Jan. 2019
Kojiro Saito
am 11 Jan. 2019
解決できてよかったです。差し支えなければ、回答の採用(accept)もポチッとお願いできますでしょうか。
Kategorien
Mehr zu 行列および配列 finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!